feat: GitHub integration and URL management
All checks were successful
Create Unity Package / package (push) Successful in 8s

This commit is contained in:
2025-11-25 18:38:00 +02:00
parent ac7c0352e5
commit cf5f71e34f
13 changed files with 1273 additions and 615 deletions

View File

@@ -20,12 +20,14 @@ namespace VRCBoard.Components
public abstract class VRCBoardBaseComponent : UdonSharpBehaviour
{
[HideInInspector] public VRCBoardManager manager;
protected virtual void OnRegister() {}
protected virtual void OnInitialize() {}
protected virtual void OnSupporterDataUpdate() {}
protected virtual void OnImageDataUpdate() {}
protected abstract void OnRegister();
protected abstract void OnInitialize();
protected abstract void OnSupporterDataUpdate();
protected abstract void OnImageDataUpdate();
protected abstract void OnImageLoaded();
protected virtual void OnImageLoaded() {}
protected virtual void OnCustomModuleUpdate(int inputModuleIndex, DataDictionary data) {}
protected internal void _Register(VRCBoardManager _manager)
{
@@ -68,7 +70,7 @@ namespace VRCBoard.Components
protected internal void _OnCustomModuleUpdate(int moduleIndex, DataDictionary data)
{
Debug.Log("Custom module update");
OnCustomModuleUpdate(moduleIndex, data);
}
protected internal void _OnAtlasImageLoaded(int atlasIndex = -1)