查看原文
其他

cocos creator | 波动的水面效果, Mask+Graphics贝塞尔曲线绘制

白玉无冰 2022-06-10

The following article is from KUOKUO众享 Author KUOKUO众享

摘要

我们都知道水面的运动形式是极其复杂的。但是在一些二维的小游戏中,我们只是想模拟其波动特性,做一些出水入水的效果。如何简单的实现波动的水面呢?

正文

看看效果


准备工作

一张背景图片即可

层级结构

Main Camera 摄像机组件的 Background Color 设置白色(不是节点颜色)。Mask 节点挂载 cc.Mask 组件,无需其他处理。water 节点挂载精灵组件,就是背景图。正常情况下,应该是全被遮住。wave 节点挂载 wave.js 脚本即可。

点的结构

现实中,水面是由一个个水分子组成。那么我们代码里就可以抽象成一个个对象

  1. 水:{

  2. x: 0,

  3. y: 0

  4. }

好了,我们现在有了水面宽度(设计分辨率宽度 720),有了点的对象。那么我们放多少个点合适呢?要知道水分子的直径约为 0.3 纳米,我们用这么多对象电脑不炸了。那这个数量就由你决定了,数量越多效果越真实,但性能就会下降。这里我设置了

  1. this.n = 20; // 细分数

能量传递

现在,我们规定了在这 720 宽的水面上有 20 个点。

  1. this.nodeArray = []; // 装载水面上的点

那么点与点之间是有能量传递的呀,比如最右侧的点(this.nodeArray[19])向上运动了,那么其旁边的点(this.nodeArray[18])必然受到影响呀。所以我们应该用一个数组来表征能量

  1. this.nodeEnergy = []; // 每个点的能量

用循环的方式代表能量传递,循环次数越多就相当于传递的越远。

  1. // 左右点互相影响 2 次, 决定波的传播快慢

  2. for (let k = 0; k < 2; k++) {

  3. for (let i = 0; i < this.n; i++) {

  4. if (i > 0) {

  5. // 0.02 的传播损失

  6. // 向左传

  7. this.nodeEnergy[i-1] += 0.98 * (this.nodeArray[i].y - this.nodeArray[i-1].y);

  8. }

  9. if (i < this.n - 1) {

  10. // 向右传

  11. this.nodeEnergy[i+1] += 0.98 * (this.nodeArray[i].y - this.nodeArray[i+1].y);

  12. }

  13. }

  14. }

速度衰减

能量传递写好了,那么我们自身也要有能量损失的。(主要是表面张力与重力)

  1. // 最右侧的跳过

  2. for (let i = 0; i < this.n - 1; i++) {

  3. // 0.02 速度损失

  4. this.nodeEnergy[i] *= 0.98;

  5. // 改变位置

  6. this.nodeArray[i].y += this.nodeEnergy[i] * dt;

  7. }

遮罩显示

不知小伙伴们有没有这样用过 cc.Mask 组件。

  1. let draw = this.mask._graphics;

遮罩组件是含有 _graphics 这个 cc.Graphics 对象的,我们用其画图就是擦除遮罩的效果。那么我们只要根据水面上的点与水底封闭图形进行擦除就能模拟出水面形状了。因为是 720 x 1280 找到最下的两个点(-360,-640)和(360, -640),与水面点连接进行图形封闭。注意不要用 lineTo 要用贝塞尔进行曲线。(因为会出现尖尖的角)

  1. // 利用遮罩原理,把下方显示

  2. showWater () {

  3. let draw = this.mask._graphics;

  4. draw.clear();

  5. draw.lineWidth = 1;

  6. // 画线颜色与填充颜色不要一致

  7. draw.strokeColor = cc.color(255,0,0);

  8. draw.fillColor = cc.color(0,255,0);

  9. // 移动到屏幕最左边,this.h = 200 是我自定义的水面高度。

  10. draw.moveTo(-360, this.h);

  11. // 贝塞尔曲线是隔一个点,作为控制点。

  12. for (let i = 0; i < this.n; i+=2) {

  13. // 贝塞尔

  14. draw.quadraticCurveTo(this.nodeArray[i].x, this.nodeArray[i].y, this.nodeArray[i+1].x, this.nodeArray[i+1].y);

  15. }

  16. // 封闭区域

  17. draw.lineTo(360, -640);

  18. draw.lineTo(-360, -640);

  19. draw.lineTo(-360, this.h);

  20. draw.fill();

  21. draw.stroke();

  22. }

赋予动力

在 start 方法下让最右侧的点呈 sin 缓动。(没看懂的一定要去官方文档里看 cc.tween)

  1. // 最右侧点缓动

  2. let obj = this.nodeArray[this.n-1];

  3. let time = 0.5;

  4. cc.tween(obj)

  5. .repeatForever(

  6. cc.tween()

  7. .to(time, { y: 40 + this.h}, { easing: 'sineOut'})

  8. .to(time, { y: 0 + this.h}, { easing: 'sineIn'})

  9. .to(time, { y: -40 + this.h}, { easing: 'sineOut'})

  10. .to(time, { y: 0 + this.h}, { easing: 'sineIn'})

  11. )

完整代码

wave.js

  1. cc.Class({

  2. extends: cc.Component,


  3. properties: {

  4. mask: cc.Mask

  5. },


  6. onLoad () {

  7. // 水面高度

  8. this.h = 200;

  9. this.n = 20; // 细分数

  10. this.nodeArray = []; // 装载水面上的点

  11. this.nodeEnergy = []; // 每个点的能量

  12. // 赋予初始值

  13. for (let i = 0; i < this.n; i++) {

  14. this.nodeEnergy[i] = 0;

  15. }

  16. },


  17. start () {

  18. // 创建水面上点

  19. for (let i = 0; i < this.n; i++) {

  20. let node = {x: 0, y: 0};

  21. node.y = this.h;

  22. node.x = -360 + (i + 1) * 720 / this.n;

  23. this.nodeArray[i] = node;

  24. }

  25. // 最右侧点缓动

  26. let obj = this.nodeArray[this.n-1];

  27. let time = 0.5;

  28. cc.tween(obj)

  29. .repeatForever(

  30. cc.tween()

  31. .to(time, { y: 40 + this.h}, { easing: 'sineOut'})

  32. .to(time, { y: 0 + this.h}, { easing: 'sineIn'})

  33. .to(time, { y: -40 + this.h}, { easing: 'sineOut'})

  34. .to(time, { y: 0 + this.h}, { easing: 'sineIn'})

  35. )

  36. .start();

  37. },


  38. // 利用遮罩原理,把下方显示

  39. showWater () {

  40. let draw = this.mask._graphics;

  41. draw.clear();

  42. draw.lineWidth = 1;

  43. draw.strokeColor = cc.color(255,0,0);

  44. draw.fillColor = cc.color(0,255,0);

  45. draw.moveTo(-360, this.h);

  46. for (let i = 0; i < this.n; i+=2) {

  47. // 贝塞尔

  48. draw.quadraticCurveTo(this.nodeArray[i].x, this.nodeArray[i].y, this.nodeArray[i+1].x, this.nodeArray[i+1].y);

  49. }

  50. // 封闭区域

  51. draw.lineTo(360, -640);

  52. draw.lineTo(-360, -640);

  53. draw.lineTo(-360, this.h);

  54. draw.fill();

  55. draw.stroke();

  56. },


  57. update (dt) {

  58. // 左右点互相影响 2 次, 决定波的传播快慢

  59. for (let k = 0; k < 2; k++) {

  60. for (let i = 0; i < this.n; i++) {

  61. if (i > 0) {

  62. // 0.02 的传播损失

  63. // 向左传

  64. this.nodeEnergy[i-1] += 0.98 * (this.nodeArray[i].y - this.nodeArray[i-1].y);

  65. }

  66. if (i < this.n - 1) {

  67. // 向右传

  68. this.nodeEnergy[i+1] += 0.98 * (this.nodeArray[i].y - this.nodeArray[i+1].y);

  69. }

  70. }

  71. }

  72. // 最右侧的跳过

  73. for (let i = 0; i < this.n - 1; i++) {

  74. // 0.02 速度损失

  75. this.nodeEnergy[i] *= 0.98;

  76. // 改变位置

  77. this.nodeArray[i].y += this.nodeEnergy[i] * dt;

  78. }

  79. this.showWater();

  80. },

  81. });

结语

想改变水面上某一点的能量或者位置时

  1. // 改变这两个数组中对应点数据即可

  2. this.nodeArray

  3. this.nodeEnergy

工程源码在以下微信公众号回复关键词【水波】即可获得

O(∩_∩)O~~

微信公众号



>> 更多精彩




您可能也对以下帖子感兴趣

文章有问题?点此查看未经处理的缓存