null
Posted: Tue Mar 31, 2020 12:01 am
null
Supporting creators of visual novels and story-based games since 2003.
https://lemmasoft.renai.us/forums/
The way I do stuff like health bars is like this (possibly a bit unorthodox in a renpy game). It is a red bar on white background.
Code: Select all
fixed:
pos (0, 0)
fixed:
pos (20, 30)
xysize (104,34)
add Solid("#fff") pos (0, 0)
fixed:
pos (2, 2)
xysize (MBhealth,30)
if MBhealth>0:
add Solid("#f00") pos (0, 0)