diff --git a/Assets/_Project/Scripts/Lua/Test.lua b/Assets/_Project/Scripts/Lua/Test.lua index 4f31c76..64886d0 100644 --- a/Assets/_Project/Scripts/Lua/Test.lua +++ b/Assets/_Project/Scripts/Lua/Test.lua @@ -10,12 +10,15 @@ Test = {} local this = Test +---------------------------------------------------------------- +-- Use this for initialization. +---------------------------------------------------------------- function this.Start() print("Start function from `Test.lua` file!") end ---------------------------------------------------------------- --- This will run every frame. +-- Update is called once per frame. ---------------------------------------------------------------- -- @param { MonoBehaviour } mb : MonoBehaviour component -- represent as game object.