This commit is contained in:
2026-04-25 23:37:10 +02:00
commit 19d6bd934a
476 changed files with 9198 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
using RPGCoreCommon.Helpers.PropertyAttributeDrawers;
using RPGCoreCommon.Settings;
using UnityEngine;
namespace RPGCore.Core
{
[CustomSettings("RPG Core/Main Settings")]
public class CoreSettings : CustomSettingsSO
{
[Header("Layers")]
[Layer] public int dynamicLayer;
[Layer] public int staticLayer;
[Layer] public int staticHideableLayer;
[Layer] public int triggerLayer;
[Layer] public int cameraLayer;
}
}