Add meta files for new materials and update serialized Udon program assets

This commit is contained in:
Aaro Varis
2024-12-03 14:24:44 +02:00
parent 150c497501
commit 9d118c023d
19 changed files with 1160 additions and 126 deletions

View File

@@ -8,6 +8,14 @@ using UnityEditor;
namespace VRCBoard.Components
{
/*
protected override void OnRegister() {}
protected override void OnInitialize() {}
protected override void OnSupporterDataUpdate() {}
protected override void OnImageDataUpdate() {}
protected override void OnImageLoaded() {}
*/
[UdonBehaviourSyncMode(BehaviourSyncMode.None)]
public abstract class VRCBoardBaseComponent : UdonSharpBehaviour
{
@@ -57,6 +65,11 @@ namespace VRCBoard.Components
CheckInitialization();
}
}
protected internal void _OnCustomModuleUpdate(int moduleIndex, DataDictionary data)
{
Debug.Log("Custom module update");
}
protected internal void _OnAtlasImageLoaded(int atlasIndex = -1)
{