I will have a look at anything might help with a stamina bar also...
Viewing post in CopperCube - Terrain sounds comments
For a simple stamina bar - create a 2d overlay based on percent is best.
The code is pretty simple -every 50ms or so:
var maxStamina = 4; // in this case 4% of screen width
var stamina = maxStamina;
if (playerStat == "run") {stamina -= 0.007;}
else if (playerStat == "walk") {stamina += 0.0024;}
else {stamina += 0.005;}
if (stamina > maxStamina) {stamina = maxStamina;}
if (stamina < 0) {stamina = 0;}
ccbSetSceneNodeProperty(stamN, "Width (percent)", stamina);
Thank you so much. I also redownloaded the CC upgrade for the terrain sounds.
You know, the variables are not my strongest suit. I did understand part of it, but maybe making a tutorial or a sample file would help more. I understand you are very busy, so there is no rush mate, take your time. It's just that practically I've tried using this and could not make anything. Mostly my fault lol, but yeah. Cheers!