x
Yes
No
Do you want to visit DriveHQ English website?
Inicio
Características
Precios
Prueba gratuita
Software cliente
Acerca de nosotros
Servidor de archivos
|
Solución de copias de seguridad
|
Servidor FTP
|
Servidor de correo electrónico
|
Alojamiento web
|
Software cliente
Servidor de archivos
Solución de copia de seguridad
Servidor FTP
Servidor de correo electrónico
Alojamiento web
Software cliente
GameScene.h - Hosted on DriveHQ Cloud IT Platform
Arriba
Subir
Descargar
Compartir
Publicar
Nueva carpeta
Nuevo archivo
Copiar
Cortar
Eliminar
Pegar
Clasificación
Actualizar
Ruta de la carpeta: \\game3dprogramming\materials\GameFactory\GameFactoryDemo\GameFactory\GameScene.h
Girar
Efecto
Propiedad
Historial
#pragma once #include "precompiled.h" #include "GameEntity.h" #include "InputManager.h" namespace GameFactory{ class GameScene { private: MyList
mEntityPool; SceneManager* mSceneMgr; RenderWindow* mRenderWindow; Camera* mCamera; NxPhysicsSDK* mPhysSDK; NxScene* mPhysScene; static GameScene* theSingleton; InputManager* mInputManager; protected: bool mIsRunning; public: static Real GravityValue; GameEntity* test; GameScene(const String& resourceName, SceneManager* pSceneManager, RenderWindow* renderWindow, Camera* camera, NxPhysicsSDK* pPhysicSDK, NxScene* pPhysicScene); virtual ~GameScene(); inline static GameScene* GetSingleton(){ myassert(theSingleton!=NULL); return theSingleton; } inline RenderWindow* GetRenderWindow()const {return mRenderWindow;}; inline SceneManager* GetSceneManager()const {return mSceneMgr;}; inline NxPhysicsSDK* GetPhysicsSDK()const {return mPhysSDK;}; inline NxScene* GetPhysicsScnene()const {return mPhysScene;}; inline void _addEntity(GameEntity* entity){ myassert(entity!=NULL); mEntityPool.Put(*entity); }; inline void _removeEntity(GameEntity* entity){ myassert(entity!=NULL); mEntityPool.Remove(*entity); } void FrameMove(Real elapsedTime); PhysicalEventHandler* RayCastClosest(const Vec3& from, const Vec3& direction, Vec3* hitPosition = NULL, Vec3* hitNormal = NULL); void _GetRayCameraToViewport(const Vec3& mousePos, Vec3& from, Vec3& direction); void FrustumCheck(const Vec3& mouseTopLeft, const Vec3& mouseBottomRight, void (*callback)(PhysicalEventHandler*)); inline void SetIsRunning(bool isRunning){mIsRunning = isRunning;}; inline bool GetIsRunning(){return mIsRunning;}; }; }
GameScene.h
Dirección de la página
Dirección del archivo
Anterior
20/55
Siguiente
Descargar
( 1 KB )
Comments
Total ratings:
0
Average rating:
No clasificado
of 10
Would you like to comment?
Join now
, or
Logon
if you are already a member.