Changeset 3501 for tutorials/branches/0185_GEN_PHYSICS_REFACTOR_2/Tutorial4/scripts/client/GameClient.lua
- Timestamp:
- 03/15/10 06:23:12 (6 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
tutorials/branches/0185_GEN_PHYSICS_REFACTOR_2/Tutorial4/scripts/client/GameClient.lua
r3495 r3501 1 print("=============\nLoading GameClient scripts...\n============") 1 2 2 3 … … 24 25 -- ~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~- 25 26 function GameClient:initialize() 27 self:init(); 28 26 29 rootGroup = self:getRootGroup() 27 30 … … 42 45 function GameClient:getActionMap(actionMapName) 43 46 -- This is in Game now, not GameClient 44 return self:get ActionMap(actionMapName)47 return self:getGame():getActionMap(actionMapName) 45 48 end 46 49
