Add old vrcboardimage script as vrcboardimagebasic

This commit is contained in:
2024-10-22 13:40:45 +03:00
parent 9777e0225d
commit 26de34be44
14 changed files with 1454 additions and 6 deletions

View File

@@ -0,0 +1,20 @@
using System.Collections;
using System.Collections.Generic;
using UdonSharp;
using UnityEngine;
using UnityEditor;
namespace VRCBoard
{
[UdonBehaviourSyncMode(BehaviourSyncMode.Manual)]
public class VRCBoardShaderEditor : ShaderGUI
{
// Start is called before the first frame update
public override void OnGUI(MaterialEditor materialEditor, MaterialProperty[] properties)
{
EditorGUILayout.LabelField("Please use the VRCBoardImageBasic component to edit the material properties.");
//base.OnGUI(materialEditor, properties);
}
}
}