Skip to content

Commit

Permalink
重命名文件夹
Browse files Browse the repository at this point in the history
  • Loading branch information
lilith-avatar-richardzhou committed Jul 9, 2021
1 parent 496fdb7 commit f4ec850
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 195 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -83,21 +83,21 @@ end
function GenInitAndUpdateList()
-- TODO: 改成在FrameworkConfig中配置
-- Init Default
ModuleUtil.GetModuleListWithFunc(world.C_Code.Module, 'InitDefault', initDefaultList, this)
ModuleUtil.GetModuleListWithFunc(world.Client.Module, 'InitDefault', initDefaultList, this)
-- Awake
ModuleUtil.GetModuleListWithFunc(Define, 'Awake', awakeList)
ModuleUtil.GetModuleListWithFunc(world.C_Code.Module, 'Awake', awakeList, this)
ModuleUtil.GetModuleListWithFunc(world.Client.Module, 'Awake', awakeList, this)
-- Start
ModuleUtil.GetModuleListWithFunc(Define, 'Start', startList)
ModuleUtil.GetModuleListWithFunc(world.C_Code.Module, 'Start', startList, this)
ModuleUtil.GetModuleListWithFunc(world.Client.Module, 'Start', startList, this)
-- OnPreRender
ModuleUtil.GetModuleListWithFunc(world.C_Code.Module, 'OnPreRender', onPreRenderList, this)
ModuleUtil.GetModuleListWithFunc(world.Client.Module, 'OnPreRender', onPreRenderList, this)
-- Update
ModuleUtil.GetModuleListWithFunc(world.C_Code.Module, 'Update', updateList, this)
ModuleUtil.GetModuleListWithFunc(world.Client.Module, 'Update', updateList, this)
-- LateUpdate
ModuleUtil.GetModuleListWithFunc(world.C_Code.Module, 'LateUpdate', lateUpdateList, this)
ModuleUtil.GetModuleListWithFunc(world.Client.Module, 'LateUpdate', lateUpdateList, this)
-- FixedUpdate
ModuleUtil.GetModuleListWithFunc(world.C_Code.Module, 'FixedUpdate', fixedUpdateList, this)
ModuleUtil.GetModuleListWithFunc(world.Client.Module, 'FixedUpdate', fixedUpdateList, this)
end

--- 执行默认的Init方法
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,19 +89,19 @@ end
function GenInitAndUpdateList()
-- TODO: 改成在FrameworkConfig中配置
-- Init Default
ModuleUtil.GetModuleListWithFunc(world.S_Code.Module, 'InitDefault', initDefaultList, this)
ModuleUtil.GetModuleListWithFunc(world.Server.Module, 'InitDefault', initDefaultList, this)
-- Awake
ModuleUtil.GetModuleListWithFunc(Define, 'Awake', awakeList)
ModuleUtil.GetModuleListWithFunc(world.S_Code.Module, 'Awake', awakeList, this)
ModuleUtil.GetModuleListWithFunc(world.Server.Module, 'Awake', awakeList, this)
-- Start
ModuleUtil.GetModuleListWithFunc(Define, 'Start', startList)
ModuleUtil.GetModuleListWithFunc(world.S_Code.Module, 'Start', startList, this)
ModuleUtil.GetModuleListWithFunc(world.Server.Module, 'Start', startList, this)
-- Update
ModuleUtil.GetModuleListWithFunc(world.S_Code.Module, 'Update', updateList, this)
ModuleUtil.GetModuleListWithFunc(world.Server.Module, 'Update', updateList, this)
-- LateUpdate
ModuleUtil.GetModuleListWithFunc(world.S_Code.Module, 'LateUpdate', lateUpdateList, this)
ModuleUtil.GetModuleListWithFunc(world.Server.Module, 'LateUpdate', lateUpdateList, this)
-- FixedUpdate
ModuleUtil.GetModuleListWithFunc(world.S_Code.Module, 'FixedUpdate', fixedUpdateList, this)
ModuleUtil.GetModuleListWithFunc(world.Server.Module, 'FixedUpdate', fixedUpdateList, this)
end

--- 执行默认的Init方法
Expand Down
Binary file modified Smap/avatar-ava.smap
Binary file not shown.

0 comments on commit f4ec850

Please sign in to comment.