logoRemuria

TLP UdonUtils

12.0.0 ใƒป Public

Udon Utils

Total downloads

Contains the base scripts/tools for TLP packages as well as prefabs and potentially helpful scripts for VRChat worlds.

Please note that there is no explicit documentation available. The code contains tooltips and descriptions of classes where it makes sense. Theses are being added over time where it makes sense.

Installation

  1. Install/Add VRChat World SDK 3.9.0 to your project
  2. Install/Add TLP UdonUtils to your project: https://guribo.github.io/TLP/

Setup

  1. Add TLP_Essentials prefab to your scene to get the core components
    1. TLPLogger - for logging anything TLP related (mandatory)
    2. WorldVersionCheck - Warns users if a player with a new world version joins
    3. TLPNetworkTime - Much more accurate VRC network time provider (sub-millisecond accuracy)

Versioning

This package is versioned using Semantic Version.

The used pattern MAJOR.MINOR.PATCH indicates:

  1. MAJOR version: incompatible API changes occurred
    • Implication: after updating backup, check and update your scenes/scripts as needed
  2. MINOR version: new functionality has been added in a backward compatible manner
    • Implication: after updating check and update your usages if needed
  3. PATCH version: backward compatible bug fixes were implemented
    • Implication: after updating remove potential workarounds you added

[12.0.0] - 2025-11-09

๐Ÿš€ Features

  • (UdonTestUtils) Implement some missing methods
  • (Adapters) [breaking] Remove Cyan Object Pool adapter and dependencies (use VRChat player objects instead)

โš™๏ธ Miscellaneous Tasks

  • Remove repeated docker image building

[11.5.8] - 2025-10-17

๐Ÿ› Bug Fixes

  • (package.json) Correct cyan object pool version

[11.5.7] - 2025-10-17

๐Ÿ› Bug Fixes

  • (package.json) Try yet another version pattern

[11.5.6] - 2025-10-17

๐Ÿ› Bug Fixes

  • (package.json) Remove unsupported -0 which would support pre-release versions

[11.5.5] - 2025-10-17

๐Ÿ› Bug Fixes

  • Switch to comprehensive version string

[11.5.4] - 2025-10-13

๐Ÿ› Bug Fixes

  • Compiler errors on android builds, correct runtime test prefabs

โš™๏ธ Miscellaneous Tasks

  • Add extendable default editor providing description on scripts
  • Update to VRC SDK 3.9.0
  • Correct new version

[11.5.3] - 2025-10-03

๐Ÿงช Testing

  • Update test runner prefab

โš™๏ธ Miscellaneous Tasks

  • Refresh demo worlds
  • Update version
  • Refresh license

[11.5.2] - 2025-10-02

๐Ÿ› Bug Fixes

  • Wrong text prefab reference breaking some prefabs

[11.5.1] - 2025-10-02

๐Ÿ› Bug Fixes

  • Compiler error in release configuration
  • Stay on VRCSdk 8.x until the new version is released

[11.5.0] - 2025-10-02

๐Ÿš€ Features

  • Add TlpFixedUpdateRate for adjustable fixed update rate
  • Add experimental Unity scene for NTP tests
  • (TestWithLogger) Add TlpNetworkTime initialization helper
  • (TlpDefaultExecutionOrder) Add validation for type consistency and duplicate target types
  • (UdonUtils) Add EnableDuringOccupation component for trigger-based GameObject toggling
  • (UdonUtils) Add PlayOnEnable for audio playback handling
  • (TlpDefaultExecutionOrder) Add lower limit validation for execution order
  • (TlpDefaultExecutionOrder) Add upper limit validation for execution order
  • (UdonUtils) Add ResultHelper for standardized success/error handling
  • (UdonUtils) Enhance ResultHelper with null checks and reference unwrapping
  • (PlayerDataRestoredEvent) Add custom editor and enhance debugging
  • (UdonUtils) Adjust fixed update rate constraints and cleanup unused code
  • (UdonUtils) Add FrameRateRandomizer for fluctuating framerate simulation
  • Add Domain Reload menu option for development

๐ŸŽจ Styling

  • Improve execution order logs

๐Ÿงช Testing

  • Fix dependency issue caused by max int execution order in test setup

โš™๏ธ Miscellaneous Tasks

  • Bump version and dependencies

[11.4.3] - 2025-07-18

๐Ÿš€ Features

  • (TlpBaseBehaviour) Add debug conditional for _isEarlyStart flag
  • (TlpDefaultExecutionOrder) Add debug conditional around execution order tracking
  • (TlpBaseBehaviour) Add debug conditional around _isEarlyStart flag

โš™๏ธ Miscellaneous Tasks

  • Bump package version to 11.4.2

[11.4.1] - 2025-07-18

๐Ÿ› Bug Fixes

  • (Readme) Update VRC SDK version in instructions

[11.4.0] - 2025-07-18

๐Ÿš€ Features

  • (execution-order) Add AiMotion constants to execution order
  • (logging) Make logging methods public
  • (runtime) Add LocalPlayer property and improve Start flow
  • (networking) Add EnsureNetworkOwnership method
  • (network) Add ownership validation to EnsureLocalOwnership
  • (udonutils) Add StationState class for tracking station usage
  • Add methods for player data component retrieval
  • (StationState) Add validation methods and dependency checks
  • (UdonCommon) Enhance player data component retrieval and logging
  • (UdonCommon) Add component retrieval with callback support
  • (UdonUtils) Add tool for fixing UdonSharp backing behaviours
  • (LateBoneFollower) Enhance behavior with safety checks and refactor serialization
  • (TlpDefaultExecutionOrder) Disable dev warnings and errors in releases

๐Ÿ› Bug Fixes

  • (tracking) Ensure TrackingDataFollower checks initialization state
  • (ownership) Add error message for failed ownership assignment
  • (ui-event) Update sync mode to prevent unintended behavior
  • (PlayerDataRestoredEvent) Improve error logging for invalid local player and update tag usage
  • (TlpBaseBehaviour) Improve error messages for HasStartedOk access violations
  • (TrackingDataFollower) Ensure component respects enabled state

๐Ÿšœ Refactor

  • (UdonCommon) Rename methods and improve logging consistency
  • (UdonCommon) Remove GetPlayerComponentWithCallback method again as it doesn't work as intended in VRC

๐Ÿ“š Documentation

  • (StationState) Add usage remarks to clarify script behavior

๐Ÿงช Testing

  • (UdonTestUtils) Fix new players being added to list twice
  • (TestWithLogger) Fix regression caused by introduced LocalPlayer variable

โš™๏ธ Miscellaneous Tasks

  • Bump version and minimum VRC World SDK version to 3.8.2

[11.3.1] - 2025-06-02

โš™๏ธ Miscellaneous Tasks

  • Bump version and update VRChat worlds dependency

[11.3.0] - 2025-01-12

๐Ÿš€ Features

  • (Tasks) Add step delta time, improve scheduler task skipping, add optional run-task-once-per-frame limiter, improve player idle detection
  • (Task) Rename new RunStep method to DoTask and keep old method for backward compatibility, add obsolete warning
  • (TlpNetworkTime) Use unscaled game time instead of time since level load to prevent slowing down of networked objects
  • (TimeSources) Add UnscaledTimeSinceGameStart
  • (TlpNetworkTime) Add ReferenceTime to TlpNetworkTime for snapshot compression

๐Ÿ› Bug Fixes

  • (TlpAccurateSyncBehaviour) Fix very inaccurate network time stamps when using float variables
  • (NtpTime) Fix noise from lack of floating point accuracy

โš™๏ธ Miscellaneous Tasks

  • Revert change of deltaTime
  • Update compiled assets

[11.2.0] - 2025-01-04

๐Ÿš€ Features

  • (Task) Expose DefaultScheduler, add DeInitTask() callback, add EstimatedStepDuration for better framepacing, add GetNeededSteps()
  • (TaskScheduler) Add GetProgress() of largest task, add DeInit of tasks, add DynamicIdleLimit which speeds up task processing when player head is not moving
  • (SyncedEvent) Add SyncedEventByteArray

๐Ÿ› Bug Fixes

  • (UtcTimeSource) Set sync mode to None to prevent continuous sync on spawned PlayerObjects

๐Ÿšœ Refactor

  • (NtpTime) Migrate from CyanPlayerObjects to VRC PlayerObjects

โš™๏ธ Miscellaneous Tasks

  • (Model) Add debug logs to Dirty flag
  • (TLP_Essentials) Update TaskScheduler defaults
  • Bump version
  • Remove WorldVersionCheck from NTP example scene
  • Update assets

[11.1.0] - 2024-12-22

๐Ÿš€ Features

  • (EditorUtils) Move ClearLog, add RecompileAll function with hotkey Ctrl+Shift+R
  • (UdonCommon) Add PlayerDataInfosToReadableString function
  • (Task) Add TryScheduleTask method to easily schedule a task for execution with the default TaskScheduler

๐Ÿ› Bug Fixes

  • (TlpLogger) Fix whitelisting not working as intended

โšก Performance

  • (UdonEvent) Add support to optionally notify listeners in the background for reduced hitching

๐Ÿงช Testing

  • (TestWithLogger) Fix missing time sources

[11.0.2] - 2024-12-19

๐Ÿ› Bug Fixes

  • (Pool) Fix exception when pool object has no UdonSharpBehaviour
  • (Model) NotifyIfDirty fails if Model not yet initialized
  • (Task) New tasks are in "Finished" state with result "Unknown"
  • (StateMachine) Fix null error on invalid state in AllStates
  • (Model) Ignore NotifyIfDirty errors if not dirty

๐Ÿšœ Refactor

  • (Task) Magic strings to const variables

[11.0.1] - 2024-12-13

๐Ÿ› Bug Fixes

  • (TaskScheduler) Ensure it turns off without tasks

[11.0.0] - 2024-12-11

๐Ÿš€ Features

  • (TlpBaseBehaviour) Add IsReady property that initializes scripts if needed
  • (UdonEvent) Ensure listener is ready before event is invoked
  • Ensure init runs
  • Add warning to isReady check
  • Add camera start and end section, refactor
  • Add TlpSingleton
  • (ObjectSpawner) Use setup and validate override
  • (Model) [breaking] Update isReady function for MVC
  • (MvcBase) [breaking] Removed isready property
  • (UdonEvent) Adjust executionorder
  • (Player) Update error handling
  • (Pool) Update error handling
  • (NtpClient) Update error handling and initialization
  • (TlpBaseBehaviour) Add IsActiveAndEnabled
  • (Runtime) Update assets and prefabs
  • (ExecutionOrderCheck) Split logging of duplicates into multiple lines
  • (Persistence) Add custom playerdata restored event, experimental executor for own lifecycle
  • Make ExecutionOrderReadOnly public
  • Add more changes
  • [breaking] Change IsReady to HasStartedOk
  • Add taskscheduler and task + example
  • Add progress
  • Fix using all available cpu time if vsync limited
  • (ExecutionOrderCheck) Reduce logging and remove check on compilation
  • (WorldVersionGenerator) Remove executionorder check added to scene saving
  • (UdonEditorUtils) Add tool options to un-/lock framerate
  • (Comparer) Update executionorder
  • (ImageDownloader) Turn into controller
  • (UdonCommon) Add ToReadableString and SecondsToLocalTime
  • (Controller) [breaking] Change Initialized to IsControllerInitialized
  • (UiEvent) [breaking] Disable sync
  • (Executor) Add missing executionorders
  • (Tasks) Add missing executionorders
  • (VRCPlayerApiUtils) Add Set-/GetPlayerTagSafe
  • (Pool) [breaking] Turn pool initialization into background task
  • (DemoBlackListToggle) [breaking] Turn into controller
  • (UiButton) Add UiEvent
  • (UiTextTMP) Enable squishing of text before it is wrapped

๐Ÿ› Bug Fixes

  • (Controller) Update error handling
  • (View) Updated error handling
  • (Factory) Update error handling
  • (CenterOfMass) Update error handling
  • (InertiaTensor) Update error handling
  • Compile error
  • (TlpBaseBehaviour) Add check if player is valid during init
  • (Model) Improve debug logs and fix init not working during start()
  • (PlayerDataRestoredEvent) Support players with the same name
  • (TimeSources) Fix tag reading, update executionorders

โšก Performance

  • (UdonEvent) Fix slow RemoveListener method

๐Ÿงช Testing

  • (MVC) Update error setting in mocks
  • (TestController) Update error handling
  • (TestMaxSendRateSender) Update error handling
  • Update and fix broken tests
  • Update and fix broken tests

โš™๏ธ Miscellaneous Tasks

  • Update assets
  • (View) Migrate to new Controller
  • Update assets
  • Update assets
  • Update assets
  • Update assets
  • Update assets
  • Bump version

[10.0.1] - 2024-11-02

๐Ÿ› Bug Fixes

  • (ExecuteAfter) Address compiler error caused by special exception

[10.0.0] - 2024-11-02

๐Ÿš€ Features

  • (StateMachine) Add transtion to delayed method to statemachine
  • [breaking] Deterministic execution order of scripts to address know VRC-bug

๐Ÿ› Bug Fixes

  • (RigidbodyVelocityProvider) Add missing dependency validation

[9.0.0] - 2024-08-20

๐Ÿš€ Features

  • Update events and lists, improve error handling, set some missing execution orders

[8.2.1] - 2024-08-18

๐Ÿ› Bug Fixes

  • (TlpBaseBehaviour) Correct gameobject path in setup error message

โš™๏ธ Miscellaneous Tasks

  • Prevent error log spam when logger is missing
  • Add support for com.vrchat.worlds 3.7.x

[8.2.0] - 2024-06-02

๐Ÿš€ Features

  • Add state machine implementation with optionally synchronized transition timing

๐Ÿ› Bug Fixes

  • (UtcTimeSource) Prevent usage of utc float time due to accuracy problems

[8.1.1] - 2024-05-27

๐Ÿ› Bug Fixes

  • (NtpTime) Fix new master not maintaining current time offset when old master leaves

[8.1.0] - 2024-05-25

๐Ÿš€ Features

  • (TlpAccurateSyncbehaviour) Use float instead of double for timestamp

๐Ÿ› Bug Fixes

  • Move missed base files to TLP.UdonUtils.Runtime namespace

โš™๏ธ Miscellaneous Tasks

  • Bump version

[8.0.0] - 2024-05-25

๐Ÿš€ Features

  • Add Stopwatch TimeSource
  • (TimeSource) [breaking] Custom ntp servertime synchronization, move Runtime files to TLP.UdonUtils.Runtime namespace
  • Add quaternion compression utils

๐Ÿšœ Refactor

  • Remove unused code

[7.0.0] - 2024-05-16

๐Ÿš€ Features

  • [breaking] Upgrade logging, world version check, split/extend physics based prediction utils, increase accuracy of TLP network time to double, improved overall accuracy/robustness in low performance situations, added latency checker, various prefab and scene updates
  • Add GetInstance function to TlpNetworkTime, expose various variables, add basic usage documentation

โš™๏ธ Miscellaneous Tasks

  • Update test scene

[6.1.2] - 2024-05-10

โš™๏ธ Miscellaneous Tasks

  • Support com.vrchat.worlds 3.6.x and Unity 2022.3.22

[6.1.1] - 2024-05-03

๐Ÿš€ Features

  • (Physics) Add PhysicsUtils class with function CalculateAccelerationAndVelocity from positions

๐Ÿ› Bug Fixes

  • (DemoBlackListToggle) Add check for unset White-/Blacklist buttons

โš™๏ธ Miscellaneous Tasks

  • Prevent creating new branches on Github

[6.0.0] - 2024-04-19

๐Ÿš€ Features

  • (TlpNetworkTime) Add ExactError property and instant Drift compensation with DriftThreshold
  • (Sync) [breaking] Change network timestamp resolution from float to double

[5.3.0] - 2024-04-14

๐Ÿš€ Features

  • (TlpNetworkTime) Add ExactError property

[5.2.4] - 2024-04-14

๐Ÿ› Bug Fixes

  • (VrcNetworkTime) Ensure that there is a single point of truth throughout a given frame for VRChats network time

[5.2.3] - 2024-04-14

๐Ÿ› Bug Fixes

  • (Build) Fix compiler errors caused by test utils

[5.2.2] - 2024-04-14

๐Ÿ› Bug Fixes

  • (Logging) Fix logs not mentioning script name correctly

[5.2.1] - 2024-04-13

๐Ÿ› Bug Fixes

  • Split get scene path functions and fix C## error in test utils

[5.2.0] - 2024-04-13

๐Ÿš€ Features

  • (testing) Add base scripts for easy unit testing

[5.1.0] - 2024-04-11

๐Ÿš€ Features

  • (Prefabs) Add ui prefabs and fonts

[5.0.0] - 2024-04-07

๐Ÿš€ Features

  • (TlpAccurateSyncBehaviour) Extract Update methods into new child classes: TlpAccurateSyncBehaviourUpdate/TlpAccurateSyncBehaviourFixedUpdate
  • (TlpAccurateSyncBehaviour) [breaking] Remove getter for synced send time, make network state private

๐Ÿงช Testing

  • (TlpAccurateSyncBehaviour) Verify update methods provide correct snapshot ages

โš™๏ธ Miscellaneous Tasks

  • Bump version

[4.0.1] - 2024-04-07

๐Ÿ› Bug Fixes

  • (SanityTest) Correct object name

[4.0.0] - 2024-04-07

๐Ÿš€ Features

  • (TlpAccurateSyncBehaviour) Make Start() method virtual
  • (Sync) Make dependencies public
  • (UdonCommon) Add extension function to get path in the scene of a transform
  • (UdonCommon) Add extension function to get path in the scene of a component
  • (TlpBaseBehaviour) [breaking] Switch to TimeSources, change logging of time and deltas, add SetupAndValidate method and call it in Start(), fix scenes and delete obsolete ones
  • (TransformBacklog) Prevent adding of time values from the past, add boolean return value, add tests
  • (Testing) Added new example runtime test GameTime vs DeltaTime, restructured Testing folder

๐Ÿšœ Refactor

  • (TlpAccurateSyncBehaviour) Add some descriptions

๐Ÿงช Testing

  • (TimeBacklog) Ensure interpolatable check works
  • (TransformBacklog) Fix failure due to floating point accuracy
  • (TransformBacklog) Fix another floating point accuracy error

โš™๏ธ Miscellaneous Tasks

  • Bump version

[3.0.0] - 2024-03-30

โš™๏ธ Miscellaneous Tasks

  • Bump version

[3.0.0-rc.3] - 2024-03-30

๐Ÿš€ Features

  • (TimeSource) Add DeltaTime getter, reformat codebase

[3.0.0-rc.2] - 2024-03-29

๐Ÿš€ Features

  • (TlpAccurateSyncBehaviour) Add setup checks to start

[3.0.0-rc.1] - 2024-03-28

๐Ÿš€ Features

  • [breaking] Add time sources

โš™๏ธ Miscellaneous Tasks

  • Append changelog to readme
  • Prepare release 3.0.0
  • Revert deletion of Testing folder

[2.0.0] - 2023-11-16

๐Ÿš€ Features

  • Add fallback position handling to tracking data tracker
  • Create Test Result UI
  • Create UI with overview
  • Update status visibility
  • Add test for eye height updates coming from master
  • Update
  • Improve error message by adding hint
  • Add prediction reduction
  • Create basic image downloader with automatic aspect ratio adjustment
  • Add new demo world for uvu (wip)
  • Prevent datalist access to invalid indices
  • Add lights and sfx to light, add more visuals, add toggle
  • Create slideshow with buttons
  • Update version

๐Ÿšœ Refactor

  • Reorder, rename

๐Ÿ“š Documentation

  • Add change notes to readme
  • Add versioning info"

๐Ÿงช Testing

  • Add some missing method implementations

[1.1.1] - 2023-10-05

๐Ÿš€ Features

  • Update version

๐Ÿ› Bug Fixes

  • Namespace

[1.1.0] - 2023-10-05

๐Ÿš€ Features

  • Update to represent fix update that removed EditorOnly from release on github
  • Move udon pool into utils
  • Remove no longer needed asmdef
  • Update version

[1.0.1] - 2023-10-03

๐Ÿš€ Features

  • Use any tag
  • Remove old readme content, update exporter
  • Add legacy folder
  • Update asmdef after update to latest udonsharp version

[1.0.0] - 2023-09-13

๐Ÿš€ Features

  • Update assets to lfs
  • Update serialization
  • Add SetOwner functionality
  • Fix stuttering at high speed
  • Change layers and make objects static that can be
  • Fix finding closest player
  • Damage indicator UI
  • Use distance check for player detection
  • Add kill confirmation
  • Start implementing leader boards
  • Start AVL tree
  • Continue implementing AVL tree
  • Fix most AVL issues
  • Improve comparer
  • Add UdonPool and usage
  • Fix build error, add executionorder to logger
  • Create basic leader board entry
  • Improve menu, add automatic scaling for content
  • Add UdonEvent
  • Add remove all listeners
  • Add basic audio to gun
  • Update logging
  • Update to U## 1.0 and client sim
  • Move logging to base class
  • Refactor player state to have base class PlayerStats
  • Moved
  • Fix loglevels, assert and perf limit warning
  • Fix entries with invalid names being added to leaderboard
  • Add vehicle sync, update leader board (break it too)
  • Initial (failed) version of better-tracking pickups
  • Jitterfree pickups
  • Make few functions static
  • Start creating composite weapons
  • Disallow multiple instances of same override in lists
  • Add gamemode, update vr components, test improvements, add serialization retry to base behaviour
  • Continue ai state machine
  • Give each damage target a unique id
  • Cleanup and add getTarget
  • Start implementing damage to targets
  • Update imported projects
  • Add loose files
  • Fix damage targets not receiving damage locally
  • Add logging of all logs in frame to profiler
  • Fix null error on player death
  • Create chair scripts
  • Add basic startup torque
  • Add execution order, fix runtime tests
  • Simplify comparison of behaviours
  • Fix scene setups
  • Update board (failing)
  • Create player entry from controller
  • Add indefinite patch
  • Fix leaving player not updating entry
  • Remove guribo references
  • Add start event to deserialization
  • Create events for ui
  • Reserialize
  • Convert recycling scroll view to udon
  • Add TLP_UNIT_TESTING define, add companion version of VRWorldToolkit
  • Change event handling and make it functionality of base class
  • Fix up scenes and broken event callbacks
  • Fix updates not being displayed
  • Display data in leaderboard entry
  • Use textmesh pro, add animation to leaderboard
  • Start adding feature for delayed event invokation
  • Implement delayed execution
  • Extract custom player stats into own class
  • Add integer utils
  • Add variations
  • Add mvc, test controller init/deinit
  • Create init for model
  • Test init of model and view
  • Enforce init order
  • Deinit controller
  • Test deinit of view
  • Add listening to model changes from view
  • Change editor, expose variables
  • Create vrcplayerapi extensions
  • Add new util
  • Start simplifying executionorder dependencies
  • Add more events for different executionorder sections, refactor executionorder on most scripts
  • Update qvpen to v3.2.5.1
  • Update tribes scene, create leaderboard prefab
  • Convert basic performance stats to model view controller
  • Update version of world on save now, requires 2 saves to go through though for now...
  • Add multiple sorting algorithms, update privacy zones example scene
  • Add dirty property to event
  • Create a factory for gameobjects
  • Create instantiating factory
  • Create factories for avl tree, factory with pool
  • Add leaderboard model
  • Add default categories
  • Reduce type spam in logs, add execution order to logs
  • Extend model to create avl trees for each category
  • Create default factories for scenes, update logging
  • Add data storing capability to LeaderModelEntryModel
  • Add comparer creation, update exectionorders, move pooleable code to base behaviour
  • Support adding players to model
  • Fix finding of inactive gameobjects
  • Add new data source using leaderboard model
  • Deinit on destroy, selectable categories with view
  • Add entries again, support ascending/descending sort direction (wip)
  • Start with sync of entries with new model
  • Fix category adding without custom categories
  • Raise change event on dirty in entry
  • Have entry synchronizer get notified when an entry changes
  • Have synchronizer attach entry to dirty root
  • Continue implementing new sync
  • Create statemachine for synchronizer
  • Continue working on sync (wip)
  • Support playmode test
  • Patch more vrc components for easier unit testing
  • Add missed vrc script to patcher, complete idle state testing
  • Remove Leaderboard, continue updating entrysynchronizer
  • Synchronization of single dirty entry
  • Convert syncing to use string
  • Update test controller and test template to test case with inheritance
  • Add max exec order, ensure tests don't respond after completion
  • Add tracking of jumps and movement distance
  • Made more utils static only
  • Removed old prefab
  • Create round robin sync
  • Update runtime folder structure
  • Add usagenote
  • Update UVU exporter and readme
  • Move some generic audio scripts here, add dummyview
  • Update
  • Remove vrc patcher
  • Change folder structure for vpm
  • Update dependencies
  • Rename and add udonutils dependency
  • Warn instead of error
  • Create synced event class
  • Raise on deserialization
  • Send the number of calls to the event since the last synchronization
  • Replace synchronize playerlist with new version
  • Fix missing asset
  • Update
  • Use inheritance, improve execution order
  • Add improved tracking scripts and first draft of a velocity provider
  • Add improved tracking scripts and first draft of a velocity provider
  • Test and improve rigidbody velocity provider
  • Create network time script that grabs a shared time for the current frame
  • Important update for smooth vehicle sync
  • Replace time.time
  • Extract accurate timing code into a parent class, add smooth error correction, add teleportation
  • Update assets
  • Update namespaces, update velocity provider
  • Add networktime assets
  • Create exporter
  • Add missing assets to exporter
  • Add support for collision detection during prediction
  • Create white/blacklist
  • Add whitelist mode and restricted usage
  • Add demo toggle script for adding local player to blacklist
  • Separate cyan dependency, update assets
  • Update assets
  • Fix some edge cases using unit testing
  • Add more tests, refactoring
  • Update model, add new ownership transfer function, add logs to base behaviour
  • Update chair, refactoring
  • Add gitconfig
  • Change tests to verify floating point issue
  • Fix relative velocity recording in velocity provider
  • Turn string loading error message into error
  • Revert severity
  • Improve compile symbols
  • Move development tools, update exporter
  • Fix/improve exporting and versioning

๐Ÿ› Bug Fixes

  • Debug symbol
  • Lfs for assets
  • Remove all files to fix lfs issues
  • Add all files again to get rid of lfs issues
  • Setting references from editor script works again

๐Ÿšœ Refactor

  • Cleanup and more test coverage
  • Remove unused code and cleanup
  • Improve contains checking
  • Make playerstats inherit from cyanpoolable
  • Fix naming
  • Use Tlpbasebehaviour
  • Fix roslyn warnings
  • Extract some duplicate code to base class
  • Cleanup model
  • Cleanup

๐Ÿ“š Documentation

  • Update Readme
  • Fix file link

๐Ÿงช Testing

  • Benchmark performance (ca. 0.4ms insertion time @ 100k elements)
  • Fix tests with debug enabled
  • Fix errors
  • Ensure logasserts are on by default
  • Show gameobjects in playtest
  • Fix failures caused by missing log expects
  • Update tests to use TestWithLogger, reduce log spam
  • Added more values and log
  • Initial setup and test of PlayerBlackList.cs
  • Continue testing for full coverage
  • Fix missing logger and test additional check
  • Fix player test

โš™๏ธ Miscellaneous Tasks

  • Add release template
  • Add serialized programs
  • Remove programs
  • Update serialization

[0.0.3] - 2021-01-08

๐Ÿš€ Features

  • Cleanup, refactoring
  • Add optional event listeners
  • Add master only activation support
  • Debug symbol toggle, cleanup
  • Add voice range far
  • Add transform recorder/player, add synced bool script that uses properties
  • Add lateBoneFollower, refactor: SyncedInteger uses Properties now
  • Add ToggleObject behaviour
  • Support disabling behaviours
  • Add synced string
  • World version check, various new scripts
  • Add more extensive path checking, replace Guribo with TLP
  • Improve error handling, add hashing of created package
  • Fix explorer opening at wrong position, update package.json

๐Ÿ› Bug Fixes

  • Missing assembly reference

๐Ÿšœ Refactor

  • Restructure content
  • Cleanup
  • Test and unity 2019

โš™๏ธ Miscellaneous Tasks

  • Update
  • Add udonsharp as dependency

[0.0.4] - 2021-06-12

๐Ÿš€ Features

  • Improved scene checking, added editor udonbehaviour extensions
  • Add test contoller template and gizmos
  • Prepare for UnU
  • Add test aborting
  • Add libraries, add networking behaviours

๐Ÿ› Bug Fixes

  • Prevent detecting default values as null, fix build error

๐Ÿšœ Refactor

  • Cleanup and add meta files

๐Ÿ“š Documentation

  • Add documentation, refactoring

โš™๏ธ Miscellaneous Tasks

  • Change file structure

[0.0.1] - 2020-04-22

Keywords

No keywords found.

Install via VCC

Package ID

tlp.udonutils

Unity Version

2022.3

Unity Release

undefined

VRChat Version

undefined

Author

License

undefined

Documentation URL

undefined

Changelog URL

undefined