Releases: Guribo/UdonUtils
Releases · Guribo/UdonUtils
1.0.2
- removed editor files that prevented compilation
Install via VPM Listing
1.0.1
- add all runtime scripts
Install via VPM Listing
1.0.0
Merge pull request #2 from Guribo/feat-convert-to-package Feat convert to package
0.4.0
v0.0.4
Features
- added a bunch of Udon Utilities that I kept recreating in other projects over and over
- added Test controller templates for doing "integration" tests in VRChat to test complex functionalities
- added unity package exporter that automates exporting new versions of e.g. this plugin
- added a bunch of Udon Networking related mini tools/scripts
- added a script that updates reflection probes in a fixed interval for better performance
v0.0.3
Changes
- improved Scene checking: only variables that can be null are detected now
- added UdonBehaviour extension for modifying UdonBehaviour variables in edit mode (e.g. custom editors)
Example
public UdonBehaviour editorTestingBehaviour;
public void TrySetVariables()
{
editorTestingBehaviour.SetInspectorVariable("testInt", 100);
editorTestingBehaviour.SetInspectorVariable("testString", "Hello World");
editorTestingBehaviour.SetInspectorVariable("testTransform", gameObject.transform);
editorTestingBehaviour.SetInspectorVariable("testGameObject", gameObject);
editorTestingBehaviour.SetInspectorVariable("testScriptReference", editorTestingBehaviour);
}
...