Hundreds of features to explore
Games made in Construct
Your questions answered
Popular & trusted by schools and Universities world-wide
Construct 3 runs in the browser & works offline
Students do not need accounts with us
Our educational partners
Free education resources to use in the classroom
World class complete documentation
Official and community submitted guides
Learn and share with other game developers
Upload and play games from the Construct community
Game development stories & opinions
In the game a char has to run as far and quick as he can while avoiding deadly obstacles, how would i show the distance they traveled in a real world measurement? I.E: 20 pixels = 2 feet.
Thanks for any help
So you want real world masurement? 20 pixels equals 2 feet isn't real,
It must be 2000 pixels = 1.73 feet
There a simple formula:
1 px = 0.0008680556 ft
as Variable
feet = 0.0008680556
You can multiply using 500 * feet
20 pixels equals 2 feet isn't real, It must be 2000 pixels = 1.73 feet
Aha. Yeah i guess i explained that wrong. If the character is around 6ft tall and takes a couple of steps, that would equal 6ft in the game. I think that's it.
Develop games in your browser. Powerful, performant & highly capable.
It would be as simple as
set text : (variable)/10&" feet"
where (variable) is the distance travelled in pixels..