solenum / exengine

A C99 3D game engine
https://oods.net
MIT License
551 stars 31 forks source link

Player Properties #8

Closed ghost closed 5 years ago

ghost commented 5 years ago

Where can I find and modify player properties?

solenum commented 5 years ago

I assume you're referring to the included demo? If so, the 'properties' for the player (such as the move speed and jump height) are sort of strewn across main.c. If you aren't referring to the demo, well.. the engine has no concept of a 'player', just entities that you can move around in the scene, cameras that you can place, etc.

ghost commented 5 years ago

Thanks!