[add] all

This commit is contained in:
2022-01-13 09:27:08 +08:00
commit 8247d8a88e
79 changed files with 41174 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
import Simple from './simple';
const { ccclass, property } = cc._decorator;
@ccclass
export default class AutoCenter extends Simple {
@property(cc.Label) label: cc.Label = null
@property key: string = ""
start() {
this.label.string = `当前中心锚点:${(this.layout.centerAnchor as any)[this.key]}`
}
onInputAnchor(event: cc.EditBox) {
let anchor = Number(event.string)
if (isNaN(anchor)) return
(this.layout.centerAnchor as any)[this.key] = anchor
this.layout.scrollToCenter()
this.label.string = `当前中心锚点:${(this.layout.centerAnchor as any)[this.key]}`
}
}