UdonSharp icon indicating copy to clipboard operation
UdonSharp copied to clipboard

An experimental compiler for compiling C# to Udon assembly

Results 24 UdonSharp issues
Sort by recently updated
recently updated
newest added

**Describe the bug in detail:** The behavior of C# and U# is different when you do an explicit cast. (ja: ) 明示的キャストを行った際にC#とU#で動作が異なります **Provide steps/code to reproduce the bug:** C# or...

bug
blocked-vrc

**Feature Description:** As a continuation of [this](https://github.com/Merlin-san/UdonSharp/issues/34) it would be nice to have some sort of [Networked] attribute to use in your U# code. This will mean that we can...

enhancement
blocked-vrc

**Feature Description:** Possible to add an custom attribute only for UdonSharp like `[NonNetworked]` that will renames internally the functions with an _ in front like `MyNonNetworkedMethod()` into `_MyNonNetworkedMethod()` ?

enhancement

these changes enable support for expression-bodied constructors, such as: ```cs public class UserDefinedClass { private readonly int _value; // NOTE: this now compiles public CustomUserClass(int value) => _value = value;...