赞 | 1 |
VIP | 20 |
好人卡 | 8 |
积分 | 3 |
经验 | 6181 |
最后登录 | 2022-8-5 |
在线时间 | 271 小时 |
Lv2.观梦者 神隐的主犯
- 梦石
- 0
- 星屑
- 299
- 在线时间
- 271 小时
- 注册时间
- 2008-2-22
- 帖子
- 7691
|
#--------------------------------------------------------------------------
# ● ● ● 标题画面 旋转图片定义 (1/3)● ● ●
#--------------------------------------------------------------------------
@pictures1 = Sprite.new # 生成 Sprite 类实例
@pictures1.bitmap = RPG::Cache.title("未命名-1") # 读取 图片
@pictures1xy = Math.hypot(@pictures1.bitmap.width, @pictures1.bitmap.height)
# Math.hypot(x, y) 返回 sqrt(x*x + y*y)。
@pictures1an = 1 - Math.asin(@pictures1.bitmap.height / @pictures1xy) / 3.14
# Math.asinh(x) 反正弦双曲线函数
@pictures1.angle = 180
# Sprite 的 旋转角度
@pictures1.x = 80 + @pictures1xy * Math.cos(3.14*(@pictures1.angle/180 + @pictures1an)) / 2 # 计算 X 的值。 Math.cos 余弦
@pictures1.y = 390 - @pictures1xy * Math.sin(3.14*(@pictures1.angle/180 + @pictures1an)) / 2 # 同上 Math.sin 正弦
@showC = 1
#--------------------------------------------------------------------------
# ● ● ● 标题画面 多图片定义(2/3) ● ● ●
#--------------------------------------------------------------------------
@pictures3 = Sprite.new # 见上面
@pictures3.bitmap = RPG::Cache.title("3") # 同上
系统信息:本贴由楼主认可为正确答案,66RPG感谢您的热情解答~ |
|