Files
CocosCreatorTutorial/BassFalling/README.md
2019-04-11 23:00:12 +08:00

15 lines
332 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 模拟球弹跳
* 定义两个变量一个speed一个accelerate。
* 设置 ball 与 ground 为BoxCollider。检测下落碰撞设置speed为defaultSpeed
* 在update中设置代码
~~~
/**
* 球运动计算
*/
drop() {
this.node.y += this.speed;
this.speed += this.accelerate;
}
~~~