This topic is not available in your language. Therefore, the original version (ja-jp) is displayed.

VRC0014: Udon does not support variable tweening when the behaviour is in Manual Sync Mode

PropertyValue
IDVRC0014
CategoryUnexpected
SeverityWarning
Runtime Version3.1.0 ~ latest

Udon does not support variable tweening when the behaviour is in Manual Sync Mode

Example

Code with Diagnostic

using UdonSharp;
 
[UdonBehaviourSyncMode(BehaviourSyncMode.Manual)]
class TestBehaviour0 : UdonSharpBehaviour
{
    [UdonSynced(UdonSyncMode.Linear)]
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    private int _linear;
    ~~~~~~~~~~~~~~~~~~~~
 
    [UdonSynced(UdonSyncMode.Smooth)]
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    private int _smooth;
    ~~~~~~~~~~~~~~~~~~~~
}

Code with Fix

// NOT YET PROVIDED
VRC0014: Udon does not support variable tweening when the behaviour is in Manual Sync Mode / Udon Analyzer / Natsuneko Laboratory Docs