以下引用做游戏的新手于2009-1-15 17:36:23的发言:
class Scene_Js
if $game_switches[24] == true
Graphics.frame_rate *= variables[20]
else $game_switches[24] == false
Graphics.frame_rate *= 1
end
开关$game_switches[x]
变量$game_variables[x]
以下引用做游戏的新手于2009-1-17 13:34:12的发言:
变量不能为true 或FALSE只能为数值
以下引用灼眼的夏娜于2009-1-17 19:51:02的发言:
疯老大是要引导别人学习。。。
class Game_Variables
def []=(variable_id, value)
if variable_id <= 5000
@data[variable_id] = value
if variable_id == 20
Graphics.frame_rate = 40 * value
end
end
end
end
以下引用IamI于2009-1-19 16:05:37的发言:
class Game_Variables
def []=(variable_id, value)
if variable_id <= 5000
@data[variable_id] = value
if variable_id == 20
Graphics.frame_rate = 40 * value
end
end
end
end
欢迎光临 Project1 (https://rpg.blue/) | Powered by Discuz! X3.1 |