Unity3D 画面扭曲切换效果脚本

时间:2015-03-19 07:48:44
【文件属性】:

文件名称:Unity3D 画面扭曲切换效果脚本

文件大小:15KB

文件格式:TXT

更新时间:2015-03-19 07:48:44

Unity3D 脚本 画面扭曲

Unity3D 画面扭曲切换效果脚本 DreamWipe.js 1. var camera1 : Camera; 2.var camera2 : Camera; 3.var fadeTime = 4.0; 4.var waveScale = .07; // Higher numbers make the effect more exaggerated. Can be negative, .5/-.5 is the max 5.var waveFrequency = 25.0; // Higher numbers make more waves in the effect 6.private var inProgress = false; 7.private var swap = false; 8. 9.function Start () { 10. ScreenWipe.use.InitializeDreamWipe(); 11.} 12.function Update () { 13. if (Input.GetKeyDown("space")) { 14. DoFade(); 15. } 16.} 17.function DoFade () { 18. if (inProgress) return; 19. inProgress = true; 20. 21. swap = !swap; 22. yield ScreenWipe.use.DreamWipe (swap? camera1 : camera2, swap? camera2 : camera1, fadeTime, waveScale, waveFrequency); 23. 24. inProgress = false; 25.}


网友评论

  • js的。。。。
  • 很不错,实现所需要的功能了
  • 不懂你为什么贴代码还加行号,无语
  • 就不能打包成unitypackage吗,就一个txt文件
  • 还行,可以使用,但是效果不够理想啊
  • 下载下来看看 。。。真心乱
  • 还不错,可以使用。