Skip to content
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

Add basic hand model to addon #10

Merged
merged 1 commit into from
Jun 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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 VERSIONS.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
- Added hand pose controller capable of generating XR input actions
- Added debounce hold and release times for poses
- Added controller pose type [skeleton, aim, grab]
- Added basic hand models to addon

# 1.1.0
- Moved fitness function to separate resource
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ importer="scene"
importer_version=1
type="PackedScene"
uid="uid://cjcehqrfoxav3"
path="res://.godot/imported/LeftHandHumanoid.gltf-219698e659d03b53d9439b731eba1dad.scn"
path="res://.godot/imported/LeftHandHumanoid.gltf-ad60a3b416a0e40b4db49f7b2b5b2621.scn"

[deps]

source_file="res://assets/gltf/LeftHandHumanoid.gltf"
dest_files=["res://.godot/imported/LeftHandHumanoid.gltf-219698e659d03b53d9439b731eba1dad.scn"]
source_file="res://addons/hand_pose_detector/hands/LeftHandHumanoid.gltf"
dest_files=["res://.godot/imported/LeftHandHumanoid.gltf-ad60a3b416a0e40b4db49f7b2b5b2621.scn"]

[params]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ importer="scene"
importer_version=1
type="PackedScene"
uid="uid://dabmoo0spa6vg"
path="res://.godot/imported/RightHandHumanoid.gltf-9b0df2ce88fbae3fc911bc06520ecfc9.scn"
path="res://.godot/imported/RightHandHumanoid.gltf-f95c309fdbd4512d77d0adba339d9024.scn"

[deps]

source_file="res://assets/gltf/RightHandHumanoid.gltf"
dest_files=["res://.godot/imported/RightHandHumanoid.gltf-9b0df2ce88fbae3fc911bc06520ecfc9.scn"]
source_file="res://addons/hand_pose_detector/hands/RightHandHumanoid.gltf"
dest_files=["res://.godot/imported/RightHandHumanoid.gltf-f95c309fdbd4512d77d0adba339d9024.scn"]

[params]

Expand Down
File renamed without changes
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@
importer="texture"
type="CompressedTexture2D"
uid="uid://jmog4gftnc6"
path.s3tc="res://.godot/imported/hand.png-a9641443c18f421b63decbe9f5ce13e4.s3tc.ctex"
path.s3tc="res://.godot/imported/hand.png-0e74e8ea85846bad12cb504adc8e5d90.s3tc.ctex"
metadata={
"imported_formats": ["s3tc_bptc"],
"vram_texture": true
}

[deps]

source_file="res://assets/gltf/hand.png"
dest_files=["res://.godot/imported/hand.png-a9641443c18f421b63decbe9f5ce13e4.s3tc.ctex"]
source_file="res://addons/hand_pose_detector/hands/hand.png"
dest_files=["res://.godot/imported/hand.png-0e74e8ea85846bad12cb504adc8e5d90.s3tc.ctex"]

[params]

Expand Down
580 changes: 577 additions & 3 deletions demo.tscn

Large diffs are not rendered by default.

606 changes: 587 additions & 19 deletions inspect.tscn

Large diffs are not rendered by default.

Loading