add floorplan 2.0 package

This commit is contained in:
Vova
2023-10-06 10:09:30 +03:00
parent b791681d51
commit c2bb35a46d
129 changed files with 9157 additions and 8 deletions
+19
View File
@@ -0,0 +1,19 @@
using System.Collections;
using System.Collections.Generic;
using UnityEditor;
using UnityEngine;
namespace alexism.Floorplan.Core.editor
{
public class floorplanMenuItem : MonoBehaviour
{
[MenuItem("Tools/Add Floorplan Handle")]
static void addFloorplanHandle()
{
GameObject floorplanHandleGameObject = new GameObject("New Floorplan Handle");
floorplanHandleGameObject.AddComponent<floorplan>();
}
}
}