Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKester Maddock <Christopher.Maddock.1@uni.massey.ac.nz>2004-07-17 09:28:23 +0400
committerKester Maddock <Christopher.Maddock.1@uni.massey.ac.nz>2004-07-17 09:28:23 +0400
commitbaa2f99f079920d404af65798a8df3e82bcc6a48 (patch)
tree2e8fb2bad0c3824e87e12cc0ebf3d4933eeb56f3 /source/gameengine/GamePlayer/ghost/GPG_Application.cpp
parent90fb63152628927d5d13b0101f4f2dcec025d2f7 (diff)
Port Python updates from Tuhopuu2:
getType/setType to action/sound actuator (sgefant) Use a more generic python -> math conversion.
Diffstat (limited to 'source/gameengine/GamePlayer/ghost/GPG_Application.cpp')
-rw-r--r--source/gameengine/GamePlayer/ghost/GPG_Application.cpp23
1 files changed, 19 insertions, 4 deletions
diff --git a/source/gameengine/GamePlayer/ghost/GPG_Application.cpp b/source/gameengine/GamePlayer/ghost/GPG_Application.cpp
index 48859392b54..04ac99f0455 100644
--- a/source/gameengine/GamePlayer/ghost/GPG_Application.cpp
+++ b/source/gameengine/GamePlayer/ghost/GPG_Application.cpp
@@ -108,10 +108,25 @@ static GHOST_ISystem* fSystem = 0;
static const int kTimerFreq = 10;
GPG_Application::GPG_Application(GHOST_ISystem* system, struct Main *maggie, STR_String startSceneName)
- : m_maggie(maggie), m_startSceneName(startSceneName), m_exitRequested(0),
- m_system(system), m_mainWindow(0), m_frameTimer(0), m_cursor(GHOST_kStandardCursorFirstCursor),
- m_mouse(0), m_keyboard(0), m_rasterizer(0), m_canvas(0), m_rendertools(0), m_kxsystem(0), m_networkdevice(0), m_audiodevice(0), m_sceneconverter(0),
- m_engineInitialized(0), m_engineRunning(0), m_ketsjiengine(0)
+ : m_startSceneName(startSceneName),
+ m_maggie(maggie),
+ m_exitRequested(0),
+ m_system(system),
+ m_mainWindow(0),
+ m_frameTimer(0),
+ m_cursor(GHOST_kStandardCursorFirstCursor),
+ m_engineInitialized(0),
+ m_engineRunning(0),
+ m_ketsjiengine(0),
+ m_kxsystem(0),
+ m_keyboard(0),
+ m_mouse(0),
+ m_canvas(0),
+ m_rendertools(0),
+ m_rasterizer(0),
+ m_sceneconverter(0),
+ m_networkdevice(0),
+ m_audiodevice(0)
{
fSystem = system;
}