Animace + Menu

This commit is contained in:
Dominik G.
2025-10-05 18:18:12 +02:00
parent b52b3aa830
commit 550efdfaad
2192 changed files with 602748 additions and 2703 deletions

15
UI/SimplePanelSettings.cs Normal file
View File

@@ -0,0 +1,15 @@
using UnityEngine;
using UnityEngine.UIElements;
namespace MegaKoop.UI
{
/// <summary>
/// Jednoduchý wrapper pro vytvoření Panel Settings assetu
/// </summary>
[CreateAssetMenu(fileName = "PanelSettings", menuName = "UI Toolkit/Panel Settings (Simple)", order = 1)]
public class SimplePanelSettingsCreator : ScriptableObject
{
// Tento soubor slouží pouze jako CreateAssetMenu wrapper
// Po vytvoření ho můžete smazat a používat standardní PanelSettings
}
}