BNBMorphing
Objective-C
@interface BNBMorphing : NSObject
/**@return morphing type (morphing_type) */
- (BNBMorphingType)getType;
/**@return morphing name (string) */
- (nonnull NSString *)getName;
/**
*sets morphing warp mesh. If morhping type is beauty must be only "$builtin$meshes/beauty" mesh.
*@param mesh (mesh): morphing warp mesh
*/
- (void)setWarpMesh:(nullable BNBMesh *)mesh;
/**@return warp (mesh) */
- (nullable BNBMesh *)getWarpMesh;
@end
Swift
class BNBMorphing : NSObject
Undocumented
-
Return Value
morphing type (morphing_type)
-
Declaration
Objective-C
- (nonnull NSString *)getName;
Swift
func getName() -> String
Return Value
morphing name (string)