|
Blender
V2.59
|
#include "GL/glew.h"#include "KX_PythonInit.h"#include <dirent.h>#include <stdlib.h>#include "KX_PyConstraintBinding.h"#include "KX_KetsjiEngine.h"#include "KX_RadarSensor.h"#include "KX_RaySensor.h"#include "KX_ArmatureSensor.h"#include "KX_SceneActuator.h"#include "KX_GameActuator.h"#include "KX_ParentActuator.h"#include "KX_SCA_DynamicActuator.h"#include "SCA_IInputDevice.h"#include "SCA_PropertySensor.h"#include "SCA_RandomActuator.h"#include "SCA_KeyboardSensor.h"#include "SCA_PythonKeyboard.h"#include "SCA_PythonMouse.h"#include "KX_ConstraintActuator.h"#include "KX_IpoActuator.h"#include "KX_SoundActuator.h"#include "KX_StateActuator.h"#include "BL_ActionActuator.h"#include "BL_ArmatureObject.h"#include "RAS_IRasterizer.h"#include "RAS_ICanvas.h"#include "RAS_BucketManager.h"#include "RAS_2DFilterManager.h"#include "MT_Vector3.h"#include "MT_Point3.h"#include "ListValue.h"#include "InputParser.h"#include "KX_Scene.h"#include "NG_NetworkScene.h"#include "BL_Shader.h"#include "KX_PyMath.h"#include "PyObjectPlus.h"#include "KX_PythonInitTypes.h"#include "DNA_ID.h"#include "DNA_scene_types.h"#include "PHY_IPhysicsEnvironment.h"#include "BKE_main.h"#include "BKE_utildefines.h"#include "BKE_global.h"#include "BLI_blenlib.h"#include "GPU_material.h"#include "MEM_guardedalloc.h"#include "KX_BlenderSceneConverter.h"#include "KX_MeshProxy.h"#include "BKE_idcode.h"Go to the source code of this file.
Functions | |
| void | KX_SetActiveScene (class KX_Scene *scene) |
| class KX_Scene * | KX_GetActiveScene () |
| class KX_KetsjiEngine * | KX_GetActiveEngine () |
| void | KX_RasterizerDrawDebugLine (const MT_Vector3 &from, const MT_Vector3 &to, const MT_Vector3 &color) |
Variables | |
| static KX_Scene * | gp_KetsjiScene = NULL |
| static KX_KetsjiEngine * | gp_KetsjiEngine = NULL |
| static RAS_IRasterizer * | gp_Rasterizer = NULL |
Definition in file KX_PythonInit.cpp.
| class KX_KetsjiEngine* KX_GetActiveEngine | ( | ) |
Definition at line 171 of file KX_PythonInit.cpp.
References gp_KetsjiEngine.
Referenced by ImageRender::ImageRender(), and Texture_refresh().
| class KX_Scene* KX_GetActiveScene | ( | ) |
Definition at line 166 of file KX_PythonInit.cpp.
References gp_KetsjiScene.
Referenced by KX_FontObject::ProcessReplica(), KX_ParentActuator::Update(), and KX_ConstraintActuator::Update().
| void KX_RasterizerDrawDebugLine | ( | const MT_Vector3 & | from, |
| const MT_Vector3 & | to, | ||
| const MT_Vector3 & | color | ||
| ) |
Definition at line 177 of file KX_PythonInit.cpp.
References RAS_IRasterizer::DrawDebugLine().
| void KX_SetActiveScene | ( | class KX_Scene * | scene | ) |
Definition at line 161 of file KX_PythonInit.cpp.
Referenced by KX_KetsjiEngine::NextFrame().
KX_KetsjiEngine* gp_KetsjiEngine = NULL [static] |
Definition at line 157 of file KX_PythonInit.cpp.
Referenced by KX_GetActiveEngine().
KX_Scene* gp_KetsjiScene = NULL [static] |
Definition at line 156 of file KX_PythonInit.cpp.
Referenced by KX_GetActiveScene().
RAS_IRasterizer* gp_Rasterizer = NULL [static] |
Definition at line 158 of file KX_PythonInit.cpp.