BNBMesh

Objective-C

@interface BNBMesh : NSObject

/**@return mesh name (string) */
- (nonnull NSString *)getName;

/**@return sub geometries names list (list<string>) */
- (nonnull NSArray<NSString *> *)getSubGeometries;

/**@return animations names list (list<string>) */
- (nonnull NSArray<NSString *> *)getAnimations;

@end

Swift

class BNBMesh : NSObject

Undocumented

  • Declaration

    Objective-C

    - (nonnull NSString *)getName;

    Swift

    func getName() -> String

    Return Value

    mesh name (string)

  • Declaration

    Objective-C

    - (nonnull NSArray<NSString *> *)getSubGeometries;

    Swift

    func getSubGeometries() -> [String]

    Return Value

    sub geometries names list (list)

  • Declaration

    Objective-C

    - (nonnull NSArray<NSString *> *)getAnimations;

    Swift

    func getAnimations() -> [String]

    Return Value

    animations names list (list)