15 lines
288 B
TypeScript
Raw Normal View History

2023-11-03 02:57:38 +08:00
import { Node } from "cc";
2023-11-08 02:32:54 +08:00
import { GData } from "../../../consts/GData";
2023-11-03 02:57:38 +08:00
import { UITransform } from "cc";
//Node 工具
export default class GNode{
static create():Node{
let mapNode = new Node();
mapNode.layer = GData.layer.World;
return mapNode;
}
}