Project1

标题: 【求助】《关于标题画面》 [打印本页]

作者: 普罗旺斯的硬币    时间: 2015-5-18 17:05
标题: 【求助】《关于标题画面》
我不太清楚应该去素材区求助还是在VA区求助……
因为这个问题同时涉及到脚本和素材,希望有大大能回答
我想利用RM的跳过标题功能来绘制初始画面……
为了美观,需要一个特殊的天气加在初始画面中:
暗红色的色调中,扬起的火星与灰烬飞向天际……大概是这个感觉,下面附一个效果大概图:
(图片来自网络……)
大概要用到脚本和部分素材……
那啥……希望有大大能帮我……

作者: 三途亚梦    时间: 2015-5-18 18:54
照你的意思是要粒子特效的节奏吧……
要在RM里做粒子效果的确需要脚本触才能做到,非专业的解决法的话,用图片序列也可以伪出效果。
作者: VIPArcher    时间: 2015-5-18 22:21
把这个狂拽酷炫吊炸天的特效做成动画,再输出成图片,然后在RM里显示图片,一帧或者几帧切换一张。BGM再配一下。
以上,具体怎么做那是你的事,图片占用空间太大也是你的事
作者: tseyik    时间: 2015-5-19 10:47
試試這個

要自己把圖改到自己需要的
RE.zip (3.96 KB, 下载次数: 39)

光拡散エフェクト

作者: moe2333    时间: 2015-5-19 18:00
一个简单的标题天气脚本,虽然只有系统自带的天气效果,但是希望能够帮到你。
  1. #============================================================================
  2. # ** Module: MoeWeatherInTitleScene
  3. #----------------------------------------------------------------------------
  4. module MoeWeatherInTitleScene
  5. #==========================================================================
  6. # * 设置开始!
  7. #--------------------------------------------------------------------------

  8. # :none, :rain, :storm, :snow 分别表示 无,雨,风,雪 四种天气类型。
  9. WEATHERTYPE = :rain

  10. # 天气强度,默认值为6。
  11. POWER = 6

  12. #--------------------------------------------------------------------------
  13. # * 高级:
  14. #--------------------------------------------------------------------------

  15. #Viewport的Z值,默认值为500。
  16. WEATHERVIEWPORTZ = 500

  17. #--------------------------------------------------------------------------
  18. # * 设置结束!
  19. #--------------------------------------------------------------------------
  20. # 请不要随便编辑设置区域以外的内容!
  21. #==========================================================================
  22. #----------------------------------------------------------------------------
  23. end
  24. #============================================================================




  25. #============================================================================
  26. # ** class: Scene_Title
  27. #----------------------------------------------------------------------------
  28. class Scene_Title < Scene_Base; include MoeWeatherInTitleScene
  29. #--------------------------------------------------------------------------
  30. # * Alias Method: start
  31. #--------------------------------------------------------------------------
  32. alias :moe_rainintitlescene_start :start
  33. def start
  34. create_weather
  35. moe_rainintitlescene_start
  36. end
  37. #--------------------------------------------------------------------------
  38. # * New Method: create_weather
  39. #--------------------------------------------------------------------------
  40. def create_weather
  41. @weather = Spriteset_Weather.new(@viewport_weather = Viewport.new)
  42. @viewport_weather.z = WEATHERVIEWPORTZ
  43. end
  44. #--------------------------------------------------------------------------
  45. # * Alias Method: update
  46. #--------------------------------------------------------------------------
  47. alias :moe_rainintitlescene_update :update
  48. def update
  49. moe_rainintitlescene_update
  50. update_weather
  51. end
  52. #--------------------------------------------------------------------------
  53. # * New Method: update_weather
  54. #--------------------------------------------------------------------------
  55. def update_weather
  56. @weather.type = WEATHERTYPE
  57. @weather.power = POWER
  58. #@weather.ox, @weather.oy = 0, 0
  59. @weather.update
  60. end
  61. #----------------------------------------------------------------------------
  62. end
  63. #============================================================================
  64. # * The File Ends Here!
  65. #============================================================================
复制代码

作者: 普罗旺斯的硬币    时间: 2015-5-19 19:49
moe2333 发表于 2015-5-19 18:00
一个简单的标题天气脚本,虽然只有系统自带的天气效果,但是希望能够帮到你。 ...

已经解决了……利用菜单画面的图片循环卷动
不过还是谢谢你!




欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1