Initial clean commit

This commit is contained in:
2026-03-26 12:05:37 +08:00
commit 7c3c8dffee
1177 changed files with 147248 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
//
// 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