标题: RPGMaker地圖縮放後跑掉 [打印本页] 作者: Chenchenyi 时间: 2022-10-12 16:36 标题: RPGMaker地圖縮放後跑掉 大家好,近期再用rpgmaker vx做遊戲
因為覺得預設的畫面太小了所以這邊有用腳本把它手動調大
腳本如下
============================================
#==============================================================================
# ■ 畫面大小更改
#------------------------------------------------------------------------------
# 畫面大小更改
#==============================================================================
Graphics.resize_screen(1080,750)
#Basic Window Resizer v1.1
#----------#
#Features: Allows you to resize the window to whatever size you like! (This is not
# like Graphics.resize, this will scale to fit)
#
#Usage: Script calls:
# Window_Resize.r(width, height) - Self-explanatory
# Window_Resize.f - fits the game window to monitor size
# Window_Resize.full - switches to full screen unless already fullscreened
# Window_Resize.window - same as full but opposite
# Window_Resize.toggle - toggles between full and window
#
#No Customization
#
#----------#
#-- Script by: V.M of D.T
#
#- Questions or comments can be:
# posted on the thread for the script
# given by email: [email protected]
# provided on facebook: http://www.facebook.com/DaimoniousTailsGames
# posed on site: daimonioustails.wordpress.com
#
#- Free to use in any project with credit given, donations always welcome!