SellyCloudSDK_demo/Example/SellyCloudSDK/Live/Beauty/FURenderKit.framework/Headers/FUHairBeauty.h

40 lines
868 B
Objective-C
Executable File
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// FUHairItem.h
// FURenderKit
//
// Created by Chen on 2021/1/15.
//
#import "FUItem.h"
#import "FUStruct.h"
NS_ASSUME_NONNULL_BEGIN
@interface FUHairBeauty : FUItem
/**
* 单色美发道具 index 对应的值范围 0 - 7渐变色美发道具index对应的值范围 0 - 4
*/
@property (nonatomic, assign) int index;
/**
* 0对应无效果1对应最强效果中间连续过渡。
*/
@property (nonatomic, assign) double strength;
@end
@interface FUHairBeauty (normal)
@property (nonatomic, assign) FULABColor normalColor;
@property (nonatomic, assign) double shine;
@end
@interface FUHairBeauty (gradient)
@property (nonatomic, assign) FULABColor gradientColor0;
@property (nonatomic, assign) FULABColor gradientColor1;
@property (nonatomic, assign) double shine0;
@property (nonatomic, assign) double shine1;
@end
NS_ASSUME_NONNULL_END