Project1
标题:
怎样设置窗体移动?
[打印本页]
作者:
Ftz。小寂、
时间:
2011-7-28 13:05
标题:
怎样设置窗体移动?
请问怎样设置窗体移动?就是类似于滑行的效果,比如说一打开菜单,里面的窗体就会滑动出来。 dsu_plus_rewardpost_czw
作者:
fux2
时间:
2011-7-28 13:25
循环更变坐标.
作者:
退屈£无聊
时间:
2011-7-29 09:19
我可以吐槽头像么.来来,我给你一点脚本.
class Window_Base < Window
def move(time, to_x, to_y)
a = (to_x - self.x) / time
b = (to_y - self.y) / time
for i in 0...time
self.x += a
self.y += b
Graphics.update
end
self.x = to_x
self.y = to_y
end
end
复制代码
使用方法,菜单里,例如status_window
@status_window.move(时间,目标X,目标Y) if @status_window.x != 你设置的目标X
作者:
763663412
时间:
2011-8-8 14:11
看看
欢迎光临 Project1 (https://rpg.blue/)
Powered by Discuz! X3.1