{"id":16122692,"url":"https://github.com/varneon/vudon-seats","last_synced_at":"2025-03-18T11:30:53.941Z","repository":{"id":63859196,"uuid":"535162359","full_name":"Varneon/VUdon-Seats","owner":"Varneon","description":"Self-calibrating synced abstract seats with callbacks and API","archived":false,"fork":false,"pushed_at":"2024-10-31T08:05:22.000Z","size":52,"stargazers_count":8,"open_issues_count":4,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-28T09:17:07.457Z","etag":null,"topics":["udonsharp","vrchat","vrchat-sdk3","vrchat-udon","vrchat-worlds"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Varneon.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"patreon":"Varneon"}},"created_at":"2022-09-11T01:35:32.000Z","updated_at":"2024-12-01T07:15:42.000Z","dependencies_parsed_at":"2024-03-19T08:31:34.706Z","dependency_job_id":"d95e5f4f-4c56-49c1-ac53-0e3bd14437e2","html_url":"https://github.com/Varneon/VUdon-Seats","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Varneon%2FVUdon-Seats","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Varneon%2FVUdon-Seats/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Varneon%2FVUdon-Seats/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Varneon%2FVUdon-Seats/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Varneon","download_url":"https://codeload.github.com/Varneon/VUdon-Seats/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243925527,"owners_count":20369906,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["udonsharp","vrchat","vrchat-sdk3","vrchat-udon","vrchat-worlds"],"created_at":"2024-10-09T21:13:26.085Z","updated_at":"2025-03-18T11:30:53.101Z","avatar_url":"https://github.com/Varneon.png","language":"C#","funding_links":["https://patreon.com/Varneon"],"categories":[],"sub_categories":[],"readme":"\u003cdiv\u003e\n\n# [VUdon](https://github.com/Varneon/VUdon) - Seats [![GitHub](https://img.shields.io/github/license/Varneon/VUdon-Seats?color=blue\u0026label=License\u0026style=flat)](https://github.com/Varneon/VUdon-Seats/blob/main/LICENSE) [![GitHub Repo stars](https://img.shields.io/github/stars/Varneon/VUdon-Seats?style=flat\u0026label=Stars)](https://github.com/Varneon/VUdon-Seats/stargazers) [![GitHub all releases](https://img.shields.io/github/downloads/Varneon/VUdon-Seats/total?color=blue\u0026label=Downloads\u0026style=flat)](https://github.com/Varneon/VUdon-Seats/releases) [![GitHub tag (latest SemVer)](https://img.shields.io/github/v/tag/Varneon/VUdon-Seats?color=blue\u0026label=Release\u0026sort=semver\u0026style=flat)](https://github.com/Varneon/VUdon-Seats/releases/latest)\n\n\u003c/div\u003e\n\nSelf-calibrating synced abstract seats with callbacks and API\n\n# Usage\n\n* Add reference to `Varneon.VUdon.Seats.Runtime` assembly definition\n* Create your own class that inherits from `Varneon.VUdon.Seats.Abstract.Seat`\n* Invoke the `base.Initialize()` method once at start to initialize the base seat class\n```csharp\nusing Varneon.VUdon.Seats.Abstract;\n\nnamespace Varneon.VUdon.Seats.Samples\n{\n    public class MySeat : Seat\n    {\n        private void Start()\n        {\n            base.Initialize();\n        }\n    }\n}\n```\n\n### Callbacks:\n```csharp\nprotected virtual void OnCalibrationStarted() { }\n\nprotected virtual void OnCalibrationFinished() { }\n\nprotected virtual void OnPlayerEnteredSeat(VRCPlayerApi player) { }\n\nprotected virtual void OnPlayerExitedSeat(VRCPlayerApi player) { }\n```\n\n### Public API Methods:\n```csharp\npublic virtual void _Eject()\n```\n\n# Installation\n\n\u003cdetails\u003e\u003csummary\u003e\n\n### Import with [VRChat Creator Companion](https://vcc.docs.vrchat.com/vpm/packages#user-packages):\u003c/summary\u003e\n\n\u003e 1. Download `com.varneon.vudon.seats.zip` from [here](https://github.com/Varneon/VUdon-Seats/releases/latest)\n\u003e 2. Unpack the .zip somewhere\n\u003e 3. In VRChat Creator Companion, navigate to `Settings` \u003e `User Packages` \u003e `Add`\n\u003e 4. Navigate to the unpacked folder, `com.varneon.vudon.seats` and click `Select Folder`\n\u003e 5. `VUdon - Seats` should now be visible under `Local User Packages` in the project view in VRChat Creator Companion\n\u003e 6. Click `Add`\n\n\u003c/details\u003e\u003cdetails\u003e\u003csummary\u003e\n\n### Import with [Unity Package Manager (git)](https://docs.unity3d.com/2019.4/Documentation/Manual/upm-ui-giturl.html):\u003c/summary\u003e\n\n\u003e 1. In the Unity toolbar, select `Window` \u003e `Package Manager` \u003e `[+]` \u003e `Add package from git URL...` \n\u003e 2. Paste the following link: `https://github.com/Varneon/VUdon-Seats.git?path=/Packages/com.varneon.vudon.seats`\n\n\u003c/details\u003e\u003cdetails\u003e\u003csummary\u003e\n\n### Import from [Unitypackage](https://docs.unity3d.com/2019.4/Documentation/Manual/AssetPackagesImport.html):\u003c/summary\u003e\n\n\u003e 1. Download latest `VUdon - Seats` from [here](https://github.com/Varneon/VUdon-Seats/releases/latest)\n\u003e 2. Import the downloaded .unitypackage into your Unity project\n\n\u003c/details\u003e\n\n\u003cdiv align=\"center\"\u003e\n\n## Developed by Varneon with :hearts:\n\n![Twitter Follow](https://img.shields.io/twitter/follow/Varneon?color=%231c9cea\u0026label=%40Varneon\u0026logo=Twitter\u0026style=for-the-badge)\n![YouTube Channel Subscribers](https://img.shields.io/youtube/channel/subscribers/UCKTxeXy7gyaxr-YA9qGWOYg?color=%23FF0000\u0026label=Varneon\u0026logo=YouTube\u0026style=for-the-badge)\n![GitHub followers](https://img.shields.io/github/followers/Varneon?color=%23303030\u0026label=Varneon\u0026logo=GitHub\u0026style=for-the-badge)\n\n\u003c/div\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvarneon%2Fvudon-seats","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvarneon%2Fvudon-seats","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvarneon%2Fvudon-seats/lists"}