feat: ajoute les potagers à la map
This commit is contained in:
@@ -9,6 +9,15 @@ export interface MapNode {
|
||||
sourcePath?: number[];
|
||||
}
|
||||
|
||||
export interface MapNodeInstanceTransform {
|
||||
position: Vector3Tuple;
|
||||
rotation: Vector3Tuple;
|
||||
scale: Vector3Tuple;
|
||||
}
|
||||
|
||||
export type MapAssetInstance = MapNodeInstanceTransform;
|
||||
export type VegetationInstance = MapNodeInstanceTransform;
|
||||
|
||||
export interface HierarchicalMapNode extends MapNode {
|
||||
role?: "group";
|
||||
children?: HierarchicalMapNode[];
|
||||
|
||||
Reference in New Issue
Block a user