PFBeautyParam.h 809 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. //
  2. // PFBeautyParam.h
  3. // SMEngineDemo
  4. //
  5. // Created by mumu on 2020/1/7.
  6. // Copyright © 2020 pfdetect. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. typedef NS_ENUM(NSUInteger, FUDataType) {
  11. FUDataTypeBeautify = 0,
  12. FUDataTypeFilter,
  13. FUDataTypeStickers,
  14. FUDataTypeOneKey
  15. };
  16. @interface PFBeautyParam : NSObject
  17. @property (nonatomic,copy)NSString *mTitle;
  18. @property (nonatomic,copy)NSString *mParam;
  19. @property (nonatomic,assign)float mValue;
  20. /* 双向的参数 0.5是原始值*/
  21. @property (nonatomic,assign) BOOL iSStyle101;
  22. /* 默认值用于,设置默认和恢复 */
  23. @property (nonatomic,assign)float defaultValue;
  24. @property (nonatomic,assign)FUDataType type;
  25. @property (nonatomic,assign) BOOL isUse;
  26. @end
  27. NS_ASSUME_NONNULL_END