Cocos-克隆已有节点:修订历史

跳到导航 跳到搜索

差异选择:选中要对比的版本的单选按钮,按Enter键或下方的按钮。
说明:(当前)=与最后版本之间的差异,(之前)=与上一版本之间的差异,=小编辑。

2023年6月28日 (星期三)

  • 当前之前 16:352023年6月28日 (三) 16:35BrainBs 讨论 贡献 559字节 +559 创建页面,内容为“ import { _decorator, Component, Node,instantiate, director } from 'cc'; const { ccclass, property } = _decorator; @ccclass("test") export class test extends Component { @property({type:Node}) private target: Node = null; @property({type:Node}) private parent_node: Node = null; start(){ let scene = director.getScene(); let node = instantiate(this.target); node.parent=this.parent_node; // 将克…”