BNBHand
Objective-C
@interface BNBHand : NSObject
/**@return hand name (string) */
- (nonnull NSString *)getName;
/**
*sets hand mesh.
*@param mesh (mesh): hand mesh
*/
- (void)setMesh:(nullable BNBMesh *)mesh;
/**@return hand mesh (mesh) */
- (nullable BNBMesh *)getMesh;
- (BNBGestureType)getGesture;
@end
Swift
class BNBHand : NSObject
Undocumented
-
Declaration
Objective-C
- (nonnull NSString *)getName;
Swift
func getName() -> String
Return Value
hand name (string)
-
Undocumented