Danv
Well-Known Member
- Aug 21, 2020
- 1,545
- 2,357
- 428
in the context of universal mods, example - i like to (for variety of reasons) on occasionally use "prefer_screen_to_id True" within "text who:" block in "screen say"
problem is - it only exist in renpy version > 7.6, and in older versions it throws exception on launch and doesn't start
if i add simple version check - renpy still parses it as usual and dies...
is there a way to completely disable/not to parse property if older version is detected? or other way around - sneak it in if new version is detected? maybe some try/exception or other python shenanigans to go around it?
You don't have permission to view the spoiler content.
Log in or register now.
if i add simple version check - renpy still parses it as usual and dies...
Python:
if renpy.version_tuple > (7, 6, 0):
prefer_screen_to_id True