Last active
June 16, 2018 14:48
-
-
Save philipshen/0b806079811c49ecd6df06b3824001f1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@ccclass | |
export default class NewClass extends cc.Component { | |
@property (cc.Node) // 1 | |
barrel: cc.Node = null | |
@property (cc.Node) | |
body: cc.Node = null | |
@property angle: number = 0 | |
@property baseAngleSpeed: number = 0 | |
@property angleSpeed: number = 0 | |
@property leftMaxAngle: number = 0 | |
@property rightMaxAngle: number = 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment