Package com.banuba.sdk.scene
Interface BodyTracker
-
- All Known Implementing Classes:
BodyTracker.CppProxy
public interface BodyTracker
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
BodyTracker.CppProxy
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description Component
asComponent()
static BodyTracker
create()
Fabric method for body_tracker creating.int
getBodyIndex()
BodyTrackerType
getType()
void
setBodyIndex(int index)
void
setType(BodyTrackerType type)
-
-
-
Method Detail
-
getType
@NonNull BodyTrackerType getType()
- Returns:
- tracker type.
-
setType
void setType(@NonNull BodyTrackerType type)
-
setBodyIndex
void setBodyIndex(int index)
-
getBodyIndex
int getBodyIndex()
-
asComponent
@Nullable Component asComponent()
- Returns:
- upcast to base type
-
create
@Nullable static BodyTracker create()
Fabric method for body_tracker creating.- Returns:
- created (body_tracker).
-
-