Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
c501d74
dont lose your work
antpb Nov 3, 2023
fe09b67
adds multiplayer
antpb Nov 28, 2023
5b2f907
adds networking block and tposed networked player
antpb Dec 19, 2023
9e6c9f3
working animations for 2 player
antpb Dec 20, 2023
78f54a5
adds user data for profile vrm and stable nameplates
antpb Dec 24, 2023
ead3010
working instanced animations
antpb Dec 28, 2023
f36af53
working state network config
antpb Jan 2, 2024
3acc664
remove old participant logic
antpb Jan 2, 2024
37b3756
adds networking UI
antpb Jan 3, 2024
854adff
working state mute button and device selection
antpb Jan 8, 2024
bae73ad
vr networking
antpb Jan 10, 2024
2f723c0
moves participants to component and mixamo rig to a util component
antpb Jan 11, 2024
b56dc75
fixes player controller cameras and rebuilds participant logic to bet…
antpb Jan 16, 2024
4d346a1
fixes entry flow to let scene build before entering room
antpb Jan 17, 2024
6f8ccbb
adjust css for the entry flow
antpb Jan 17, 2024
fa72b37
adds room balancing and restructures all blocks to use proper components
antpb Jan 21, 2024
a6c7aa2
fixes video and starts vr mic controls
antpb Jan 22, 2024
308875d
remove unused package
antpb Jan 22, 2024
5642939
fix three-object block and add kses for web components
antpb Jan 26, 2024
8f976de
add core endpoints for handling heartbeats and room entry and registe…
antpb Jan 30, 2024
3d9551c
adds sprite avatars and more custom url options
antpb Feb 2, 2024
68457f1
add the character stable before trying mad things
antpb Feb 4, 2024
253d1e8
adds ecctrl implementation and stable vision pro support
antpb Feb 11, 2024
4cdd14f
adds ecctrl implementation and stable vision pro support
antpb Feb 11, 2024
32daa57
cleanup and optimizes multiplayer messaging
antpb Feb 12, 2024
b8d2325
reworks the animation system for jumping
antpb Feb 20, 2024
11ff891
webpack 5 and npm updates + uikit
antpb Feb 29, 2024
62f878f
stablizes webpack
antpb Feb 29, 2024
8aea4d5
fix default asset paths and ktx path
antpb Mar 1, 2024
435a276
clean up wordpress org errors and add new avatar and camera options t…
antpb Mar 4, 2024
5c50f82
adds configuration for TURN and dynamic credential relay
antpb Mar 6, 2024
3e1290f
initialize networked rooms with the room id
antpb Mar 6, 2024
25e8b64
adds toybox
antpb Apr 24, 2024
f9310f5
change interopolation for networking
antpb Apr 26, 2024
0652909
adds new animation controller and interpolation
antpb Apr 27, 2024
7b256ba
move tests bc im tired of seeing red
antpb Apr 27, 2024
7fd6187
checkin
antpb Apr 29, 2024
02ea1f9
check in a somewhat controllable state
antpb May 3, 2024
d87986b
somewhat working hands noice
antpb May 4, 2024
ab3a129
check in working wrist rotations
antpb May 7, 2024
05012ed
slightly working ik
antpb May 20, 2024
8e7402b
add half assed attempt at vr avatar hands
antpb Sep 16, 2024
f653d05
much closer vr IK solution. checking in stable system and component
antpb Sep 25, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ vendor
wordpress
build
pro/
plugin-build/free/*.zip
.phpunit.result.cache
plugin-build/pro/three-object-viewer/*
!plugin-build/pro/three-object-viewer/.gitkeep
Expand Down
49 changes: 49 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [

{
"name": "Listen for Xdebug",
"type": "php",
"request": "launch",
"port": 9003
},
{
"name": "Launch currently open script",
"type": "php",
"request": "launch",
"program": "${file}",
"cwd": "${fileDirname}",
"port": 0,
"runtimeArgs": [
"-dxdebug.start_with_request=yes"
],
"env": {
"XDEBUG_MODE": "debug,develop",
"XDEBUG_CONFIG": "client_port=${port}"
}
},
{
"name": "Launch Built-in web server",
"type": "php",
"request": "launch",
"runtimeArgs": [
"-dxdebug.mode=debug",
"-dxdebug.start_with_request=yes",
"-S",
"localhost:0"
],
"program": "",
"cwd": "${workspaceRoot}",
"port": 9003,
"serverReadyAction": {
"pattern": "Development Server \\(http://localhost:([0-9]+)\\) started",
"uriFormat": "http://localhost:%s",
"action": "openExternally"
}
}
]
}
4 changes: 2 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"editor.defaultFormatter": "rvest.vs-code-prettier-eslint",
"editor.codeActionsOnSave": {
"source.fixAll": true
},
"source.fixAll": "explicit"
},
"[javascript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
Expand Down
Loading