mirror of
https://gitlab.com/YuukiPS/GSServer-CBT.git
synced 2025-08-03 10:20:12 +03:00
melon
This commit is contained in:
56
soggy_resources/lua/Actor/InterLua/Q304Feather.lua
Normal file
56
soggy_resources/lua/Actor/InterLua/Q304Feather.lua
Normal file
@@ -0,0 +1,56 @@
|
||||
require('Actor/ActorCommon')
|
||||
local interactionActorProxy = require('Actor/Interaction/InteractionActorProxy')
|
||||
|
||||
local TestInteractionActor = class("TestInteractionActor", interactionActorProxy)
|
||||
local q304Cfg = require('Actor/Quest/Q304/Q304Config')
|
||||
local featherData = q304Cfg.FeatherData
|
||||
|
||||
function tablelength(T)
|
||||
local count = 0
|
||||
for _ in pairs(T) do count = count + 1 end
|
||||
return count
|
||||
end
|
||||
|
||||
function print_r ( t )
|
||||
local print_r_cache={}
|
||||
local function sub_print_r(t,indent)
|
||||
if (print_r_cache[tostring(t)]) then
|
||||
CS.UnityEngine.Debug.Log(indent.."*"..tostring(t))
|
||||
else
|
||||
print_r_cache[tostring(t)]=true
|
||||
if (type(t)=="table") then
|
||||
for pos,val in pairs(t) do
|
||||
if (type(val)=="table") then
|
||||
CS.UnityEngine.Debug.Log(indent.."["..pos.."] => "..tostring(t).." {")
|
||||
sub_print_r(val,indent..string.rep(" ",string.len(pos)+8))
|
||||
CS.UnityEngine.Debug.Log(indent..string.rep(" ",string.len(pos)+6).."}")
|
||||
elseif (type(val)=="string") then
|
||||
CS.UnityEngine.Debug.Log(indent.."["..pos..'] => "'..val..'"')
|
||||
else
|
||||
CS.UnityEngine.Debug.Log(indent.."["..pos.."] => "..tostring(val))
|
||||
end
|
||||
end
|
||||
else
|
||||
CS.UnityEngine.Debug.Log(indent..tostring(t))
|
||||
end
|
||||
end
|
||||
end
|
||||
if (type(t)=="table") then
|
||||
CS.UnityEngine.Debug.Log(tostring(t).." {")
|
||||
sub_print_r(t," ")
|
||||
CS.UnityEngine.Debug.Log("}")
|
||||
else
|
||||
sub_print_r(t," ")
|
||||
end
|
||||
end
|
||||
|
||||
function TestInteractionActor:OnInterStart(interCnt)
|
||||
local Qin = actorMgr:GetActor("1006")
|
||||
local Wendy = actorMgr:GetActor("1001")
|
||||
local Paimon = actorMgr:GetActor("1005")
|
||||
if interCnt == 2 then
|
||||
globalActor:SpawnGadget(featherData.FeatherGadgetID, featherData.feather1Pos, featherData.feather1Dir, "Feather1")
|
||||
end
|
||||
end
|
||||
|
||||
return TestInteractionActor
|
80
soggy_resources/lua/Actor/InterLua/Q305Knight.lua
Normal file
80
soggy_resources/lua/Actor/InterLua/Q305Knight.lua
Normal file
@@ -0,0 +1,80 @@
|
||||
require('Actor/ActorCommon')
|
||||
local interactionActorProxy = require('Actor/Interaction/InteractionActorProxy')
|
||||
|
||||
local TestInteractionActor = class("TestInteractionActor", interactionActorProxy)
|
||||
|
||||
function tablelength(T)
|
||||
local count = 0
|
||||
for _ in pairs(T) do count = count + 1 end
|
||||
return count
|
||||
end
|
||||
|
||||
function print_r ( t )
|
||||
local print_r_cache={}
|
||||
local function sub_print_r(t,indent)
|
||||
if (print_r_cache[tostring(t)]) then
|
||||
CS.UnityEngine.Debug.Log(indent.."*"..tostring(t))
|
||||
else
|
||||
print_r_cache[tostring(t)]=true
|
||||
if (type(t)=="table") then
|
||||
for pos,val in pairs(t) do
|
||||
if (type(val)=="table") then
|
||||
CS.UnityEngine.Debug.Log(indent.."["..pos.."] => "..tostring(t).." {")
|
||||
sub_print_r(val,indent..string.rep(" ",string.len(pos)+8))
|
||||
CS.UnityEngine.Debug.Log(indent..string.rep(" ",string.len(pos)+6).."}")
|
||||
elseif (type(val)=="string") then
|
||||
CS.UnityEngine.Debug.Log(indent.."["..pos..'] => "'..val..'"')
|
||||
else
|
||||
CS.UnityEngine.Debug.Log(indent.."["..pos.."] => "..tostring(val))
|
||||
end
|
||||
end
|
||||
else
|
||||
CS.UnityEngine.Debug.Log(indent..tostring(t))
|
||||
end
|
||||
end
|
||||
end
|
||||
if (type(t)=="table") then
|
||||
CS.UnityEngine.Debug.Log(tostring(t).." {")
|
||||
sub_print_r(t," ")
|
||||
CS.UnityEngine.Debug.Log("}")
|
||||
else
|
||||
sub_print_r(t," ")
|
||||
end
|
||||
end
|
||||
|
||||
function TestInteractionActor:OnInterStart(interCnt)
|
||||
local Qin = actorMgr:GetActor("1006")
|
||||
local Wendy = actorMgr:GetActor("1001")
|
||||
local Paimon = actorMgr:GetActor("1005")
|
||||
if interCnt == 1 then
|
||||
print_r(actorMgr.ActorDic)
|
||||
Qin:SetPos(sceneData:GetDummyPoint(3,"Q305KnightDoor").pos)
|
||||
Qin:TurnTo(M.Euler2DirXZ(sceneData:GetDummyPoint(3,"Q305KnightDoor").rot))
|
||||
-- Qin:DoFreeStyle(1)
|
||||
elseif interCnt == 2 then
|
||||
-- CS.UnityEngine.Debug.Log('hello world111')
|
||||
print_r(actorMgr.ActorDic)
|
||||
Qin:Standby()
|
||||
Qin:WalkTo(sceneData:GetDummyPoint(3,"Q411QinBorn").pos)
|
||||
elseif interCnt == 5 then
|
||||
-- CS.UnityEngine.Debug.Log('hello world111')
|
||||
print_r(actorMgr.ActorDic)
|
||||
Wendy:DoFreeStyle(0)
|
||||
Wendy:CallDelay(2,Wendy.Standby)
|
||||
Qin:SetPos(sceneData:GetDummyPoint(3,"Q411QinBorn").pos)
|
||||
-- elseif interCnt == 8 then
|
||||
-- -- CS.UnityEngine.Debug.Log('hello world111')
|
||||
-- print_r(actorMgr.ActorDic)
|
||||
-- Wendy:RunTo(sceneData:GetDummyPoint(3,"Q306KnightVanish").pos)
|
||||
-- -- Wendy:Destroy(false)
|
||||
-- Paimon:RunTo(sceneData:GetDummyPoint(3,"Q306KnightVanish").pos)
|
||||
elseif interCnt == 25 then
|
||||
-- CS.UnityEngine.Debug.Log('hello world111')
|
||||
print_r(actorMgr.ActorDic)
|
||||
Wendy:SetPos(sceneData:GetDummyPoint(3,"Q301Hidden").pos)
|
||||
-- Wendy:Destroy(false)
|
||||
Paimon:SetPos(sceneData:GetDummyPoint(3,"Q301Hidden").pos)
|
||||
end
|
||||
end
|
||||
|
||||
return TestInteractionActor
|
80
soggy_resources/lua/Actor/InterLua/Q353Slime.lua
Normal file
80
soggy_resources/lua/Actor/InterLua/Q353Slime.lua
Normal file
@@ -0,0 +1,80 @@
|
||||
require('Actor/ActorCommon')
|
||||
local interactionActorProxy = require('Actor/Interaction/InteractionActorProxy')
|
||||
|
||||
local TestInteractionActor = class("TestInteractionActor", interactionActorProxy)
|
||||
local this = nil
|
||||
|
||||
function tablelength(T)
|
||||
local count = 0
|
||||
for _ in pairs(T) do count = count + 1 end
|
||||
return count
|
||||
end
|
||||
|
||||
function print_r ( t )
|
||||
local print_r_cache={}
|
||||
local function sub_print_r(t,indent)
|
||||
if (print_r_cache[tostring(t)]) then
|
||||
CS.UnityEngine.Debug.Log(indent.."*"..tostring(t))
|
||||
else
|
||||
print_r_cache[tostring(t)]=true
|
||||
if (type(t)=="table") then
|
||||
for pos,val in pairs(t) do
|
||||
if (type(val)=="table") then
|
||||
CS.UnityEngine.Debug.Log(indent.."["..pos.."] => "..tostring(t).." {")
|
||||
sub_print_r(val,indent..string.rep(" ",string.len(pos)+8))
|
||||
CS.UnityEngine.Debug.Log(indent..string.rep(" ",string.len(pos)+6).."}")
|
||||
elseif (type(val)=="string") then
|
||||
CS.UnityEngine.Debug.Log(indent.."["..pos..'] => "'..val..'"')
|
||||
else
|
||||
CS.UnityEngine.Debug.Log(indent.."["..pos.."] => "..tostring(val))
|
||||
end
|
||||
end
|
||||
else
|
||||
CS.UnityEngine.Debug.Log(indent..tostring(t))
|
||||
end
|
||||
end
|
||||
end
|
||||
if (type(t)=="table") then
|
||||
CS.UnityEngine.Debug.Log(tostring(t).." {")
|
||||
sub_print_r(t," ")
|
||||
CS.UnityEngine.Debug.Log("}")
|
||||
else
|
||||
sub_print_r(t," ")
|
||||
end
|
||||
end
|
||||
|
||||
function TestInteractionActor:OnInterStart(interCnt)
|
||||
local Qin = actorMgr:GetActor("Qin")
|
||||
local Wendy = actorMgr:GetActor("Wendy")
|
||||
local Paimon = actorMgr:GetActor("Paimon")
|
||||
this = self
|
||||
|
||||
--[[ if interCnt == 1 then
|
||||
print_r(actorMgr.ActorDic)
|
||||
Qin:SetPos(sceneData:GetDummyPoint(3,"Q305KnightDoor").pos)
|
||||
Qin:TurnTo(M.Euler2DirXZ(sceneData:GetDummyPoint(3,"Q305KnightDoor").rot))
|
||||
-- Qin:DoFreeStyle(1)
|
||||
elseif interCnt == 2 then
|
||||
-- CS.UnityEngine.Debug.Log('hello world111')
|
||||
print_r(actorMgr.ActorDic)
|
||||
Qin:Standby()
|
||||
Qin:WalkTo(sceneData:GetDummyPoint(3,"Q411QinBorn").pos)
|
||||
elseif interCnt == 5 then
|
||||
-- CS.UnityEngine.Debug.Log('hello world111')
|
||||
print_r(actorMgr.ActorDic)
|
||||
Wendy:DoFreeStyle(0)
|
||||
Wendy:CallDelay(2,Wendy.Standby)
|
||||
Qin:SetPos(sceneData:GetDummyPoint(3,"Q411QinBorn").pos)
|
||||
-- elseif interCnt == 8 then
|
||||
-- -- CS.UnityEngine.Debug.Log('hello world111')
|
||||
-- print_r(actorMgr.ActorDic)
|
||||
-- Wendy:RunTo(sceneData:GetDummyPoint(3,"Q306KnightVanish").pos)
|
||||
-- -- Wendy:Destroy(false)
|
||||
-- Paimon:RunTo(sceneData:GetDummyPoint(3,"Q306KnightVanish").pos) ]]
|
||||
--[[ if interCnt == 9 then
|
||||
print("Spawn Slime")
|
||||
globalActor:SpawnMonster(20010302, 1, sceneData:GetDummyPoint(3,"Q353Monster1").pos)
|
||||
end ]]
|
||||
end
|
||||
|
||||
return TestInteractionActor
|
59
soggy_resources/lua/Actor/InterLua/Q370SDragonTears.lua
Normal file
59
soggy_resources/lua/Actor/InterLua/Q370SDragonTears.lua
Normal file
@@ -0,0 +1,59 @@
|
||||
require('Actor/ActorCommon')
|
||||
local interactionActorProxy = require('Actor/Interaction/InteractionActorProxy')
|
||||
|
||||
local TestInteractionActor = class("TestInteractionActor", interactionActorProxy)
|
||||
local this = nil
|
||||
|
||||
function tablelength(T)
|
||||
local count = 0
|
||||
for _ in pairs(T) do count = count + 1 end
|
||||
return count
|
||||
end
|
||||
|
||||
function print_r ( t )
|
||||
local print_r_cache={}
|
||||
local function sub_print_r(t,indent)
|
||||
if (print_r_cache[tostring(t)]) then
|
||||
CS.UnityEngine.Debug.Log(indent.."*"..tostring(t))
|
||||
else
|
||||
print_r_cache[tostring(t)]=true
|
||||
if (type(t)=="table") then
|
||||
for pos,val in pairs(t) do
|
||||
if (type(val)=="table") then
|
||||
CS.UnityEngine.Debug.Log(indent.."["..pos.."] => "..tostring(t).." {")
|
||||
sub_print_r(val,indent..string.rep(" ",string.len(pos)+8))
|
||||
CS.UnityEngine.Debug.Log(indent..string.rep(" ",string.len(pos)+6).."}")
|
||||
elseif (type(val)=="string") then
|
||||
CS.UnityEngine.Debug.Log(indent.."["..pos..'] => "'..val..'"')
|
||||
else
|
||||
CS.UnityEngine.Debug.Log(indent.."["..pos.."] => "..tostring(val))
|
||||
end
|
||||
end
|
||||
else
|
||||
CS.UnityEngine.Debug.Log(indent..tostring(t))
|
||||
end
|
||||
end
|
||||
end
|
||||
if (type(t)=="table") then
|
||||
CS.UnityEngine.Debug.Log(tostring(t).." {")
|
||||
sub_print_r(t," ")
|
||||
CS.UnityEngine.Debug.Log("}")
|
||||
else
|
||||
sub_print_r(t," ")
|
||||
end
|
||||
end
|
||||
|
||||
function TestInteractionActor:OnInterStart(interCnt)
|
||||
local Qin = actorMgr:GetActor("1006")
|
||||
local Wendy = actorMgr:GetActor("1001")
|
||||
local Paimon = actorMgr:GetActor("1005")
|
||||
this = self
|
||||
|
||||
-- if interCnt == 41 then
|
||||
-- print("Spawn Tears")
|
||||
-- globalActor:SpawnGadget(70300038, sceneData:GetDummyPoint(1004,"Q370Tears").pos, sceneData:GetDummyPoint(1004,"Q370Tears").rot, "Tears", 1004)
|
||||
|
||||
-- end
|
||||
end
|
||||
|
||||
return TestInteractionActor
|
58
soggy_resources/lua/Actor/InterLua/Q37604.lua
Normal file
58
soggy_resources/lua/Actor/InterLua/Q37604.lua
Normal file
@@ -0,0 +1,58 @@
|
||||
require('Actor/ActorCommon')
|
||||
local interactionActorProxy = require('Actor/Interaction/InteractionActorProxy')
|
||||
|
||||
local TestInteractionActor = class("TestInteractionActor", interactionActorProxy)
|
||||
local this = nil
|
||||
|
||||
function tablelength(T)
|
||||
local count = 0
|
||||
for _ in pairs(T) do count = count + 1 end
|
||||
return count
|
||||
end
|
||||
|
||||
function print_r ( t )
|
||||
local print_r_cache={}
|
||||
local function sub_print_r(t,indent)
|
||||
if (print_r_cache[tostring(t)]) then
|
||||
CS.UnityEngine.Debug.Log(indent.."*"..tostring(t))
|
||||
else
|
||||
print_r_cache[tostring(t)]=true
|
||||
if (type(t)=="table") then
|
||||
for pos,val in pairs(t) do
|
||||
if (type(val)=="table") then
|
||||
CS.UnityEngine.Debug.Log(indent.."["..pos.."] => "..tostring(t).." {")
|
||||
sub_print_r(val,indent..string.rep(" ",string.len(pos)+8))
|
||||
CS.UnityEngine.Debug.Log(indent..string.rep(" ",string.len(pos)+6).."}")
|
||||
elseif (type(val)=="string") then
|
||||
CS.UnityEngine.Debug.Log(indent.."["..pos..'] => "'..val..'"')
|
||||
else
|
||||
CS.UnityEngine.Debug.Log(indent.."["..pos.."] => "..tostring(val))
|
||||
end
|
||||
end
|
||||
else
|
||||
CS.UnityEngine.Debug.Log(indent..tostring(t))
|
||||
end
|
||||
end
|
||||
end
|
||||
if (type(t)=="table") then
|
||||
CS.UnityEngine.Debug.Log(tostring(t).." {")
|
||||
sub_print_r(t," ")
|
||||
CS.UnityEngine.Debug.Log("}")
|
||||
else
|
||||
sub_print_r(t," ")
|
||||
end
|
||||
end
|
||||
|
||||
function TestInteractionActor:OnInterStart(interCnt)
|
||||
local Wendy = actorMgr:GetActor("1001")
|
||||
local Paimon = actorMgr:GetActor("1005")
|
||||
this = self
|
||||
|
||||
if interCnt == 8 then
|
||||
print("NPC Destroy")
|
||||
-- Wendy:HideSelf()
|
||||
-- Paimon:HideSelf()
|
||||
end
|
||||
end
|
||||
|
||||
return TestInteractionActor
|
84
soggy_resources/lua/Actor/InterLua/Q414_41400.lua
Normal file
84
soggy_resources/lua/Actor/InterLua/Q414_41400.lua
Normal file
@@ -0,0 +1,84 @@
|
||||
require('Actor/ActorCommon')
|
||||
local interactionActorProxy = require('Actor/Interaction/InteractionActorProxy')
|
||||
|
||||
local TestInteractionActor = class("TestInteractionActor", interactionActorProxy)
|
||||
|
||||
function tablelength(T)
|
||||
local count = 0
|
||||
for _ in pairs(T) do count = count + 1 end
|
||||
return count
|
||||
end
|
||||
|
||||
function print_r ( t )
|
||||
local print_r_cache={}
|
||||
local function sub_print_r(t,indent)
|
||||
if (print_r_cache[tostring(t)]) then
|
||||
CS.UnityEngine.Debug.Log(indent.."*"..tostring(t))
|
||||
else
|
||||
print_r_cache[tostring(t)]=true
|
||||
if (type(t)=="table") then
|
||||
for pos,val in pairs(t) do
|
||||
if (type(val)=="table") then
|
||||
CS.UnityEngine.Debug.Log(indent.."["..pos.."] => "..tostring(t).." {")
|
||||
sub_print_r(val,indent..string.rep(" ",string.len(pos)+8))
|
||||
CS.UnityEngine.Debug.Log(indent..string.rep(" ",string.len(pos)+6).."}")
|
||||
elseif (type(val)=="string") then
|
||||
CS.UnityEngine.Debug.Log(indent.."["..pos..'] => "'..val..'"')
|
||||
else
|
||||
CS.UnityEngine.Debug.Log(indent.."["..pos.."] => "..tostring(val))
|
||||
end
|
||||
end
|
||||
else
|
||||
CS.UnityEngine.Debug.Log(indent..tostring(t))
|
||||
end
|
||||
end
|
||||
end
|
||||
if (type(t)=="table") then
|
||||
CS.UnityEngine.Debug.Log(tostring(t).." {")
|
||||
sub_print_r(t," ")
|
||||
CS.UnityEngine.Debug.Log("}")
|
||||
else
|
||||
sub_print_r(t," ")
|
||||
end
|
||||
end
|
||||
|
||||
function TestInteractionActor:OnInterStart(interCnt)
|
||||
local Wendy = actorMgr:GetActor("1001")
|
||||
local Paimon = actorMgr:GetActor("1005")
|
||||
local q414Cfg = require('Actor/Quest/Q414/Q414Config')
|
||||
local PaimonData = q414Cfg.PaimonData
|
||||
|
||||
if interCnt == 2 then
|
||||
print_r(actorMgr.ActorDic)
|
||||
--Paimon:CreateActorWithPos(paimonData.Paimon, paimonData.PaimonScript, paimonData.PaimonID, 0, paimonData.bornPos, paimonData.bornDir, true, false)
|
||||
--Paimon:SetPos(sceneData:GetDummyPoint(3,"Q414Paimon1").pos)
|
||||
--Paimon:TurnTo(M.Euler2DirXZ(sceneData:GetDummyPoint(3,"Q414Paimon1").rot))
|
||||
Paimon:DoFreeStyle(10)
|
||||
elseif interCnt == 4 then
|
||||
-- CS.UnityEngine.Debug.Log('hello world111')
|
||||
Paimon:DoFreeStyle(1)
|
||||
elseif interCnt == 23 then
|
||||
-- CS.UnityEngine.Debug.Log('hello world111')
|
||||
Paimon:DoFreeStyle(3)
|
||||
--[[ elseif interCnt == 5 then
|
||||
-- CS.UnityEngine.Debug.Log('hello world111')
|
||||
print_r(actorMgr.ActorDic)
|
||||
Wendy:DoFreeStyle(0)
|
||||
Wendy:CallDelay(2,Wendy.Standby)
|
||||
Qin:SetPos(sceneData:GetDummyPoint(3,"Q411QinBorn").pos)
|
||||
-- elseif interCnt == 8 then
|
||||
-- -- CS.UnityEngine.Debug.Log('hello world111')
|
||||
-- print_r(actorMgr.ActorDic)
|
||||
-- Wendy:RunTo(sceneData:GetDummyPoint(3,"Q306KnightVanish").pos)
|
||||
-- -- Wendy:Destroy(false)
|
||||
-- Paimon:RunTo(sceneData:GetDummyPoint(3,"Q306KnightVanish").pos)
|
||||
elseif interCnt == 25 then
|
||||
-- CS.UnityEngine.Debug.Log('hello world111')
|
||||
print_r(actorMgr.ActorDic)
|
||||
Wendy:SetPos(sceneData:GetDummyPoint(3,"Q301Hidden").pos)
|
||||
-- Wendy:Destroy(false)
|
||||
Paimon:SetPos(sceneData:GetDummyPoint(3,"Q301Hidden").pos) ]]
|
||||
end
|
||||
end
|
||||
|
||||
return TestInteractionActor
|
56
soggy_resources/lua/Actor/InterLua/TempPreview.lua
Normal file
56
soggy_resources/lua/Actor/InterLua/TempPreview.lua
Normal file
@@ -0,0 +1,56 @@
|
||||
require('Actor/ActorCommon')
|
||||
local interactionActorProxy = require('Actor/Interaction/InteractionActorProxy')
|
||||
|
||||
local TestInteractionActor = class("TestInteractionActor", interactionActorProxy)
|
||||
|
||||
function tablelength(T)
|
||||
local count = 0
|
||||
for _ in pairs(T) do count = count + 1 end
|
||||
return count
|
||||
end
|
||||
|
||||
function print_r ( t )
|
||||
local print_r_cache={}
|
||||
local function sub_print_r(t,indent)
|
||||
if (print_r_cache[tostring(t)]) then
|
||||
CS.UnityEngine.Debug.Log(indent.."*"..tostring(t))
|
||||
else
|
||||
print_r_cache[tostring(t)]=true
|
||||
if (type(t)=="table") then
|
||||
for pos,val in pairs(t) do
|
||||
if (type(val)=="table") then
|
||||
CS.UnityEngine.Debug.Log(indent.."["..pos.."] => "..tostring(t).." {")
|
||||
sub_print_r(val,indent..string.rep(" ",string.len(pos)+8))
|
||||
CS.UnityEngine.Debug.Log(indent..string.rep(" ",string.len(pos)+6).."}")
|
||||
elseif (type(val)=="string") then
|
||||
CS.UnityEngine.Debug.Log(indent.."["..pos..'] => "'..val..'"')
|
||||
else
|
||||
CS.UnityEngine.Debug.Log(indent.."["..pos.."] => "..tostring(val))
|
||||
end
|
||||
end
|
||||
else
|
||||
CS.UnityEngine.Debug.Log(indent..tostring(t))
|
||||
end
|
||||
end
|
||||
end
|
||||
if (type(t)=="table") then
|
||||
CS.UnityEngine.Debug.Log(tostring(t).." {")
|
||||
sub_print_r(t," ")
|
||||
CS.UnityEngine.Debug.Log("}")
|
||||
else
|
||||
sub_print_r(t," ")
|
||||
end
|
||||
end
|
||||
|
||||
function TestInteractionActor:OnInterStart(interCnt)
|
||||
if interCnt == 1 then
|
||||
print_r(actorMgr.ActorDic)
|
||||
local Gaia = actorMgr:GetActor("1005")
|
||||
Gaia:SetPos(M.Pos(1, 2, 3))
|
||||
elseif interCnt == 2 then
|
||||
CS.UnityEngine.Debug.Log('hello world111')
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
return TestInteractionActor
|
Reference in New Issue
Block a user