diff options
| author | raysan5 <[email protected]> | 2017-04-17 17:25:27 +0200 |
|---|---|---|
| committer | raysan5 <[email protected]> | 2017-04-17 17:25:27 +0200 |
| commit | 4b8a0268ede4bd56a7b06fd2e2ea056f933f0f10 (patch) | |
| tree | aa91563c12ad9181b8ffe00ff2201c5ef7fce2ca /examples/physac/physics_friction.c | |
| parent | 881f134f4d2fb4419d50382284e19b4f8ca4660e (diff) | |
| download | raylib-4b8a0268ede4bd56a7b06fd2e2ea056f933f0f10.tar.gz raylib-4b8a0268ede4bd56a7b06fd2e2ea056f933f0f10.zip | |
Added physac examples to web
Some tweaks on original src files
Diffstat (limited to 'examples/physac/physics_friction.c')
| -rw-r--r-- | examples/physac/physics_friction.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/physac/physics_friction.c b/examples/physac/physics_friction.c index 25f31d3f..9472729a 100644 --- a/examples/physac/physics_friction.c +++ b/examples/physac/physics_friction.c @@ -28,7 +28,6 @@ int main() SetConfigFlags(FLAG_MSAA_4X_HINT); InitWindow(screenWidth, screenHeight, "Physac [raylib] - Physics friction"); - SetTargetFPS(60); // Physac logo drawing position int logoX = screenWidth - MeasureText("Physac", 30) - 10; @@ -63,6 +62,8 @@ int main() bodyB->staticFriction = 1; bodyB->dynamicFriction = 1; SetPhysicsBodyRotation(bodyB, 330*DEG2RAD); + + SetTargetFPS(60); //-------------------------------------------------------------------------------------- // Main game loop |
