Project1
标题:
command 内描绘rect的问题……
[打印本页]
作者:
冰舞蝶恋
时间:
2011-7-2 19:36
标题:
command 内描绘rect的问题……
怎么描绘不规则的rect选项矩形?就是说,不是像正规的那样,横着或者竖着排。。
可不可以指定第一个选项的矩形是x,y,宽度,高度分别多少,第二个又怎样,这样的……
麻烦了,多谢。。。 dsu_plus_rewardpost_czw
作者:
px.凤翔九天
时间:
2011-7-2 19:40
xp中有个set方法可以设定。
比如这样
self.cursor_rect.set(0, @index * 116, self.width - 32, 96)
复制代码
不知道vx中是否同样可以,你试试。
作者:
fux2
时间:
2011-7-3 18:08
哟,好久不见小冰问问题.
下面是一个粗劣的例子
class Window_Command < Window_Selectable
Fux2 = [[10,20],[30,22],[-5,5]]
def item_rect(index)
rect = Rect.new(0, 0, 0, 0)
rect.width = (contents.width + @spacing) / @column_max - @spacing + Fux2[index][0]
rect.height = WLH + Fux2[index][1]
rect.x = index % @column_max * (rect.width + @spacing) - Fux2[index][0]/2
rect.y = index / @column_max * WLH - Fux2[index][1]/2
return rect
end
end
复制代码
欢迎光临 Project1 (https://rpg.blue/)
Powered by Discuz! X3.1