// // PFBeautyParam.h // SMEngineDemo // // Created by mumu on 2020/1/7. // Copyright © 2020 pfdetect. All rights reserved. // #import NS_ASSUME_NONNULL_BEGIN typedef NS_ENUM(NSUInteger, FUDataType) { FUDataTypeBeautify = 0, FUDataTypeFilter, FUDataTypeStickers, FUDataTypeOneKey }; @interface PFBeautyParam : NSObject @property (nonatomic,copy)NSString *mTitle; @property (nonatomic,copy)NSString *mParam; @property (nonatomic,assign)float mValue; /* 双向的参数 0.5是原始值*/ @property (nonatomic,assign) BOOL iSStyle101; /* 默认值用于,设置默认和恢复 */ @property (nonatomic,assign)float defaultValue; @property (nonatomic,assign)FUDataType type; @property (nonatomic,assign) BOOL isUse; @end NS_ASSUME_NONNULL_END