-- 自分のファイル名を返す local function GetName() return "module_1" end -- Vector3.__new(0,100,0)を返す local function GetVector() return Vector3.__new(0,100,0) end -- VScodeのインテリセンス(入力予測)を使用するのに必要 return { GetName = GetName, GetVector = GetVector }