mirror of
https://git.aaro.dev/VRCBoard/vrcboard-udon.git
synced 2026-03-17 04:49:45 +00:00
feat: GitHub integration and URL management
All checks were successful
Create Unity Package / package (push) Successful in 8s
All checks were successful
Create Unity Package / package (push) Successful in 8s
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user