mirror of
https://gitlab.com/YuukiPS/GSServer-CBT.git
synced 2024-12-25 07:19:22 +03:00
22 lines
373 B
Lua
22 lines
373 B
Lua
---GlobalActor全局配置
|
|
-- @module GlobalActorConfig
|
|
|
|
local GlobalActorConfig = {}
|
|
|
|
GlobalActorConfig.initSubActors =
|
|
{
|
|
{
|
|
alias = "WindTestGlobal11",
|
|
metaPath = "Actor/SubGlobal/WindTestGlobalActor",
|
|
},
|
|
{
|
|
alias = "LimitRegionGlobal",
|
|
metaPath = "Actor/SubGlobal/LimitRegionGlobalActor",
|
|
}
|
|
}
|
|
|
|
GlobalActorConfig.initAddSubActors =
|
|
{
|
|
}
|
|
|
|
return GlobalActorConfig |