Just got my DarkPhysics to work, well i can run the demos in "software mode", the icons appers etc. But when i try to run the "Getting startet" script....
` call this command to be able to use physics in our program
phy start
` turn sync rate on
sync on
sync rate 60
` make a box that will be our ground
make object box 1, 50, 1, 50
` create a static rigid body box to represent the ground
phy make rigid body static box 1
` create a cube and place it just above the edge of the ground
make object cube 2, 5
position object 2, 0, 10, -26
` create a dynamic rigid body box to represent our cube
phy make rigid body dynamic box 2
` position the camera so we can see the cube and box
position camera 0, 10, -50
` and here’s our main loop
do
` update the physics
phy update
sync
loop
...the psysics funktion wont work and a new window from Nividas website popsup telling me to upfrade my grapichcard (Geforce 6600) witch i done but still the same problem. Is my grapichcard to old? If so, witch one do i need to buy? (not the premium one cause the computer is about six years old, HP pavillion).
Thank you =)
Hello!