Package com.banuba.sdk.scene
Interface HandTracker
-
- All Known Implementing Classes:
HandTracker.CppProxy
public interface HandTracker
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
HandTracker.CppProxy
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description Component
asComponent()
static HandTracker
create()
Fabric method for hand creating.Hand
getHand()
HandTrackerType
getType()
void
setHand(Hand hand)
Sets hand to hand tracker.void
setType(HandTrackerType type)
-
-
-
Method Detail
-
setHand
void setHand(@Nullable Hand hand)
Sets hand to hand tracker.- Parameters:
hand
- (hand): hand asset
-
getHand
@Nullable Hand getHand()
- Returns:
- hand (hand): hand asset
-
getType
@NonNull HandTrackerType getType()
- Returns:
- tracker type. Can be hand_skelet or ring
-
setType
void setType(@NonNull HandTrackerType type)
-
asComponent
@Nullable Component asComponent()
- Returns:
- upcast to base type
-
create
@Nullable static HandTracker create()
Fabric method for hand creating.- Returns:
- created (hand_tracker).
-
-