I've got an interesting little problem here.
my CreateCube() functions don't seam to want to create a mesh. idk if it's the VM i'm using or what. bellow is my code
DebugPhysics(true);
TBody ground=CreateBodyBox(10,0.1,10);
TMesh groundMesh=CreateCube();
ScaleEntity(groundMesh,Vec3(10,0.1,10));
EntityParent(groundMesh,ground);
TBody ground2=CreateBodyBox(10,0.1,10);
TMesh groundMesh2=CreateCube();
ScaleEntity(groundMesh2,Vec3(10,0.1,10));
EntityParent(groundMesh2,ground2);
EntityType(ground2,1);
PositionEntity(ground2,Vec3(10,-20,0));
RotateEntity(ground2,Vec3(0,0,45));
TBody ground3=CopyEntity(ground);
PositionEntity(ground3,Vec3(0,-25,0));
here is the engine log
Leadwerks Engine 2.5
Initializing Renderer...
OpenGL Version: 2.1 Chromium 1.9
GLSL Version: 1.20
Render device: Chromium
Vendor: Humper
DrawBuffers2 supported: 0
16 texture units supported.
GPU instancing supported: 0
Shader model 4.0 supported: 0
Conditional render supported: 0
Loading shader "zip::c:/documents and settings/tss llc leadwerks/desktop/leason 5/leason 5/shaders.pak//query.vert", ""...
Loading shader "zip::c:/documents and settings/tss llc leadwerks/desktop/leason 5/leason 5/shaders.pak//guide.vert", "zip::c:/documents and settings/tss llc leadwerks/desktop/leason 5/leason 5/shaders.pak//guide.frag"...
Loading shader "zip::c:/documents and settings/tss llc leadwerks/desktop/leason 5/leason 5/shaders.pak//mesh/mesh_shadow.vert", ""...
Loading shader "zip::c:/documents and settings/tss llc leadwerks/desktop/leason 5/leason 5/shaders.pak//mesh/mesh.vert", "zip::c:/documents and settings/tss llc leadwerks/desktop/leason 5/leason 5/shaders.pak//mesh/mesh.frag"...
Loading shader "zip::c:/documents and settings/tss llc leadwerks/desktop/leason 5/leason 5/shaders.pak//postfilters/postfilter.vert", "zip::c:/documents and settings/tss llc leadwerks/desktop/leason 5/leason 5/shaders.pak//postfilters/depthblit.frag"...
Loading texture "incbin::noise.dds"...
Loading shader "zip::c:/documents and settings/tss llc leadwerks/desktop/leason 5/leason 5/shaders.pak//postfilters/postfilter.vert", "zip::c:/documents and settings/tss llc leadwerks/desktop/leason 5/leason 5/shaders.pak//lighting/directionallight.frag"...
Terminate function
anyone got any ideas. My VM is Virtual box. 3D accelleration is on as well as 2d and have 128 MBs of VRAM and 2.5 GBs of RAM. anyone got any ideas of how to solve this issue
thanks,
Xtreampb