initial commit

This commit is contained in:
Caleb
2026-03-01 15:59:27 +08:00
commit a9e97d56cb
1426 changed files with 172367 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