VRChat UdonSharp 개발용 디버그 콘솔
Debug console for VRChat UdonSharp development
- Ingame Logging
- Synchronize Logs
VRChat
Unity 2019.4
VRCSDK 3.0
UDONSharp
- Please download it here -> Release
- Import it into your Unity Project
- Place the "Toggle" prefab
Debug.Log(<UdonSharpBehaviour Class>, <String Message>);
Debug.LogWarn(<UdonSharpBehaviour Class>, <String Message>);
Debug.LogError(<UdonSharpBehaviour Class>, <String Message>);
public class MyClass
{
public logPanel Debug;
public void MyFunction()
{
Debug.Log(this, "Hello, World!");
Debug.LogWarn(this, "Hello, World!");
Debug.LogError(this, "Hello, World!");
}
}
- Auto Setter 버튼을 눌러 모든 UdonSharpBehaviours에 자동으로 할당
- Automatically assign to all UdonSharpBehaviours by pressing the Auto Setter button
- 타인의 로그를 열람 가능함
- Can view other people's logs
- 🎲 System Dev
- 📓 Project Manage
- 🖧 Networking
- ✅ Q/A
- 🏗 UI Design
- 🎨 Resource Design
- 🎲 System Design
- 📓 Project Manage
- 🖧 Networking
https://github.com/kibalab/K13A_Udon_Console
MIT License