Added lua exporting

This commit is contained in:
2025-04-09 22:20:52 +02:00
parent 765575d7ae
commit b3da188438
10 changed files with 161 additions and 34 deletions

11
Runtime/LuaFile.cs Normal file
View File

@@ -0,0 +1,11 @@
using UnityEngine;
namespace Splashedit.RuntimeCode
{
[CreateAssetMenu(fileName = "NewLuaScript", menuName = "Lua Script", order = 1)]
public class LuaFile : ScriptableObject
{
public TextAsset luaScript;
}
}