This script displays the playtime within a window on the Menu screen. (This window will only display when on the menu screen - Scene_Menu) Click to expand...
Features
An overall playtime window available for the player to see when accessing the menu screen. You have the ability to fine tune the playtime window to your liking at the top of the script. Click to expand...
# Sets the module variable into static variables to read easier
x = FG7::Simple_PlayTime::X_Horizontal
y = FG7::Simple_PlayTime::Y_Vertical
width = FG7::Simple_PlayTime::Width
height = FG7::Simple_PlayTime::Height
# Creates the playtime window (Will only show on the Scene_Menu)
@playtime_window = Window_PlayTime.new(x, y, width, height)
if SceneManager.scene_is?(Scene_Menu)
@playtime_window.show
else
@playtime_window.hide
end
end
end
复制代码
How to Use
Add this script in the script editor under in the "Materials" section and above "Main Process".
The instructions and setup for the script are held within the script header itself. No need to repeat here. Click to expand...
Terms of Use
- Free to use in non-commercial projects and commercial projects
- Feel free to modify and improve the script. Credit is still required.
- Credit FamilyGamer7 Click to expand...