Project1
标题:
高手帮忙修改下脚本。只有高手能帮我了!
[打印本页]
作者:
孟凡生
时间:
2009-2-9 13:16
提示:
作者被禁止或删除 内容自动屏蔽
作者:
njx937
时间:
2009-2-9 21:21
改actor commmand 的 window.png
self.windowskin = Cache.system("XX") 做一张类似的图片,右上的是边框,改透明就没边框了
左上的是底色
将选项改图片的话就只需改改actor commmand
加一个方法
#--------------------------------------------------------------------------
# ● 绘制项目
# index : 项目位置
# enabled : 有效标志,false时项目半透明化
#--------------------------------------------------------------------------
def draw_item(index, enabled = true)
rect = item_rect(index)
rect.x += 4
rect.width -= 8
self.contents.clear_rect(rect)
self.contents.font.color = normal_color
self.contents.font.color.alpha = enabled ? 255 : 128
self.contents.draw_text(rect, @commands[index])
end
复制代码
照着draw_face ( serarch 一下在window_base里面) 里面是获取图片的 改基本就ok
不显示状态的话。。。要怎么实现选人我就不会了,估计要改很久
scene_battle
作者:
孟凡生
时间:
2009-2-10 00:05
提示:
作者被禁止或删除 内容自动屏蔽
作者:
孟凡生
时间:
2009-2-10 00:09
提示:
作者被禁止或删除 内容自动屏蔽
作者:
njx937
时间:
2009-2-10 02:04
这个,想我帮你改。。。要。。等很久。。。目前与scene_battle斗争中
加特效的。。。没研究过。。暂时无法答复。。不过应该可以做的,最坏打算是用技能动画或者堆图片
那个白条,应该是说Window_Selectable的那个会动的光标 item_rect这个是他的定义脚本
由于后面有一堆要用他的,所以有两种修改方法
1,
def item_rect( index, type = 0)
@type = type
case type
when 0 # 普通矩框
rect = Rect.new(0, 0, 0, 0)
rect.width = (contents.width + @spacing) / @column_max - @spacing
rect.height = WLH
rect.x = index % @column_max * (rect.width + @spacing)
rect.y = index / @column_max * WLH
when 1 # 双行矩框
rect = Rect.new(0, 0, 0, 0)
rect.width = (contents.width + @spacing) / @column_max - @spacing
rect.height = WLH * 2
rect.x = index % @column_max * (rect.width + @spacing)
rect.y = index / @column_max * WLH * 2
when 2 # AT矩框
rect = Rect.new(0, 0, 0, 0)
rect.width = (contents.width + @spacing) / @column_max - 48
rect.height = 48
rect.x = 0
rect.y = index / @column_max * 56
when 3 # 战斗头像矩框
rect = Rect.new(0, 0, 0, 0)
rect.width = 152
rect.height = 112
rect.x = index * 152
rect.y = 0
end
return rect
end
复制代码
之后把update_cursor 的rect = item_rect(@index, @type) 这行改了
2,在你的window的脚本再写一个item_rect
命令的坐标在Window_ActorCommand重新写一个draw_item 可以完全自己定
光标的颜色外观。。是window.png右下方块的左上那个方框,怎样都可以改
作者:
孟凡生
时间:
2009-2-10 02:23
提示:
作者被禁止或删除 内容自动屏蔽
欢迎光临 Project1 (https://rpg.blue/)
Powered by Discuz! X3.1