VN Ren'Py The Martin Experiment [Alpha 2025.02.12] [The Martin Experiment]

4.00 star(s) 4 Votes

DD-MegaDoDo

Newbie
Jun 13, 2023
59
21
More of a sandbox / point-and-click than a VN.

Also, script to re-enable skipping.
Python:
# Paste into file named whatever.rpy under game/ folder
init python:
    _preferences.skip_unseen = True
question from someone who sometimes tinkers with game files for my own amusement, why use:
_preferences.skip_unseen = True

and not

preferences.skip_unseen = True
 

xmehmehmehx

New Member
May 22, 2018
7
10
question from someone who sometimes tinkers with game files for my own amusement, why use:
_preferences.skip_unseen = True

and not

preferences.skip_unseen = True
Because it was in the first thread google gave me lol. Good to know there's a less scary looking version though.

Looks like they're both refs to the exact same object.

Python:
init -1700 python:
    ##########################################################################
    # Alias the preferences object.

    # This is for compatibility with default preferences.foo = True.
    preferences = _preferences

    ##########################################################################
    # Empty window
 
Last edited:
4.00 star(s) 4 Votes