CVRLuaToolsExtension: initial testing

This commit is contained in:
NotAKidoS 2024-08-17 00:24:11 -05:00
parent c0208d8e97
commit 6810bcf021
13 changed files with 668 additions and 0 deletions

View file

@ -0,0 +1,12 @@
namespace NAK.CVRLuaToolsExtension;
[Serializable]
public struct ScriptInfo
{
public string AssetId; // we will reload all scripts with this asset id
public int LuaComponentId; // the target lua component id
public string ScriptName; // the new script name
public string ScriptPath;
public string ScriptText; // the new script text
}