-
Notifications
You must be signed in to change notification settings - Fork 5
Player-OnQuit-BugFixing #154
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
uzaiiirahmed
wants to merge
16
commits into
playroomkit:main
Choose a base branch
from
uzaiiirahmed:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
3a60871
feat : Enable 4 players and update build settings
uzaiiirahmed 46c4ecb
feat : Add player count UI to 2D platformer example
uzaiiirahmed 357fe72
feat : Hello World RPC display test to 2d platformer
uzaiiirahmed 9fc2998
feat: RPC for custom data transfer in 2D platformer
uzaiiirahmed 72d7391
refactor: Improve RPC data handling
uzaiiirahmed 3061ad9
feat: Enhance RPC data handling with additional logging and new data …
HamadUllah16 ed805eb
refactor: Simplify data parsing in RPC by using null-conditional oper…
HamadUllah16 b0db3ee
Merge pull request #1
uzaiiirahmed d3431a4
chore : re-added chrome drivers
uzaiiirahmed 62adbea
feat : Player handling dynamically.
uzaiiirahmed fc851f9
refactor :RemovePlayer to non-static
uzaiiirahmed 10b338a
feat : hello world now actually transfer from P2P
uzaiiirahmed c7e71d3
feat : TestDictionaryRPC for sending and receiving structured data
uzaiiirahmed 97348d5
chore : updated Ui and re added hello world on H key
uzaiiirahmed cce58c5
chore : removed unnecessary $ symb.
uzaiiirahmed ee0c9bd
feat :Improved RPC data handling and add dictionary RPC support
uzaiiirahmed File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,56 +1,55 @@ | ||
| { | ||
| "files.exclude": | ||
| { | ||
| "**/.DS_Store":true, | ||
| "**/.git":true, | ||
| "**/.gitmodules":true, | ||
| "**/*.booproj":true, | ||
| "**/*.pidb":true, | ||
| "**/*.suo":true, | ||
| "**/*.user":true, | ||
| "**/*.userprefs":true, | ||
| "**/*.unityproj":true, | ||
| "**/*.dll":true, | ||
| "**/*.exe":true, | ||
| "**/*.pdf":true, | ||
| "**/*.mid":true, | ||
| "**/*.midi":true, | ||
| "**/*.wav":true, | ||
| "**/*.gif":true, | ||
| "**/*.ico":true, | ||
| "**/*.jpg":true, | ||
| "**/*.jpeg":true, | ||
| "**/*.png":true, | ||
| "**/*.psd":true, | ||
| "**/*.tga":true, | ||
| "**/*.tif":true, | ||
| "**/*.tiff":true, | ||
| "**/*.3ds":true, | ||
| "**/*.3DS":true, | ||
| "**/*.fbx":true, | ||
| "**/*.FBX":true, | ||
| "**/*.lxo":true, | ||
| "**/*.LXO":true, | ||
| "**/*.ma":true, | ||
| "**/*.MA":true, | ||
| "**/*.obj":true, | ||
| "**/*.OBJ":true, | ||
| "**/*.asset":true, | ||
| "**/*.cubemap":true, | ||
| "**/*.flare":true, | ||
| "**/*.mat":true, | ||
| "**/*.meta":true, | ||
| "**/*.prefab":true, | ||
| "**/*.unity":true, | ||
| "build/":true, | ||
| "Build/":true, | ||
| "Library/":true, | ||
| "library/":true, | ||
| "obj/":true, | ||
| "Obj/":true, | ||
| "ProjectSettings/":true, | ||
| "temp/":true, | ||
| "Temp/":true | ||
| "files.exclude": { | ||
| "**/.DS_Store": true, | ||
| "**/.git": true, | ||
| "**/.gitmodules": true, | ||
| "**/*.booproj": true, | ||
| "**/*.pidb": true, | ||
| "**/*.suo": true, | ||
| "**/*.user": true, | ||
| "**/*.userprefs": true, | ||
| "**/*.unityproj": true, | ||
| "**/*.dll": true, | ||
| "**/*.exe": true, | ||
| "**/*.pdf": true, | ||
| "**/*.mid": true, | ||
| "**/*.midi": true, | ||
| "**/*.wav": true, | ||
| "**/*.gif": true, | ||
| "**/*.ico": true, | ||
| "**/*.jpg": true, | ||
| "**/*.jpeg": true, | ||
| "**/*.png": true, | ||
| "**/*.psd": true, | ||
| "**/*.tga": true, | ||
| "**/*.tif": true, | ||
| "**/*.tiff": true, | ||
| "**/*.3ds": true, | ||
| "**/*.3DS": true, | ||
| "**/*.fbx": true, | ||
| "**/*.FBX": true, | ||
| "**/*.lxo": true, | ||
| "**/*.LXO": true, | ||
| "**/*.ma": true, | ||
| "**/*.MA": true, | ||
| "**/*.obj": true, | ||
| "**/*.OBJ": true, | ||
| "**/*.asset": true, | ||
| "**/*.cubemap": true, | ||
| "**/*.flare": true, | ||
| "**/*.mat": true, | ||
| "**/*.meta": true, | ||
| "**/*.prefab": true, | ||
| "**/*.unity": true, | ||
| "build/": true, | ||
| "Build/": true, | ||
| "Library/": true, | ||
| "library/": true, | ||
| "obj/": true, | ||
| "Obj/": true, | ||
| "ProjectSettings/": true, | ||
| "temp/": true, | ||
| "Temp/": true | ||
| }, | ||
| "dotnet.defaultSolution": "playroom-unity.sln" | ||
| "dotnet.defaultSolution": "playroom.sln" | ||
| } |
uzaiiirahmed marked this conversation as resolved.
Show resolved
Hide resolved
uzaiiirahmed marked this conversation as resolved.
Show resolved
Hide resolved
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| { | ||
| "version": "1.0", | ||
| "components": [ | ||
| "Microsoft.VisualStudio.Workload.ManagedGame" | ||
| ] | ||
| } |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.