Added physics engine-module and example
- Added new physics engine-module with four new data types: Physics, Transform, Rigidbody and Collider. This library contains functions to apply physics calculations to a position vector calculating collisions automatically. - Fixed some writing mistakes of lighting module.
This commit is contained in:
parent
1bcb5ddd50
commit
e683fe88b9
9 changed files with 588 additions and 6 deletions
|
@ -1,11 +1,21 @@
|
|||
/*******************************************************************************************
|
||||
*
|
||||
* raylib - Phong lighting shader example
|
||||
* raylib [lighting] example - Basic Phong lighting
|
||||
*
|
||||
* This example has been created using raylib v1.3.0 (www.raylib.com)
|
||||
* Welcome to raylib!
|
||||
*
|
||||
* To test examples, just press F6 and execute raylib_compile_execute script
|
||||
* Note that compiled executable is placed in the same folder as .c file
|
||||
*
|
||||
* You can find all basic examples on C:\raylib\raylib\examples folder or
|
||||
* raylib official webpage: www.raylib.com
|
||||
*
|
||||
* Enjoy using raylib. :)
|
||||
*
|
||||
* This example has been created using raylib 1.3 (www.raylib.com)
|
||||
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
|
||||
*
|
||||
* Copyright (c) 2015 Ramon Santamaria (Ray San - raysan@raysanweb.com)
|
||||
* Copyright (c) 2015 Ramon Santamaria (@raysan5)
|
||||
*
|
||||
********************************************************************************************/
|
||||
|
||||
|
@ -22,7 +32,7 @@ int main()
|
|||
const int screenHeight = 450;
|
||||
|
||||
SetConfigFlags(FLAG_MSAA_4X_HINT);
|
||||
InitWindow(screenWidth, screenHeight, "raylib [lighting] example - basic blinn-phong lighting");
|
||||
InitWindow(screenWidth, screenHeight, "raylib [lighting] example - blinn phong lighting");
|
||||
SetTargetFPS(60);
|
||||
|
||||
// Camera initialization
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue