From 4018c19756c8a4fe762c5f3854e6412dc640123b Mon Sep 17 00:00:00 2001 From: Jen-Chieh Date: Tue, 24 Mar 2020 16:49:52 +0800 Subject: [PATCH] Apply doc. --- Assets/_Project/Scripts/Lua/Test.lua | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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.