46 lines
1.6 KiB
Objective-C
Executable File
46 lines
1.6 KiB
Objective-C
Executable File
//
|
|
// FUMakeUpChildStrengthKeyKey.h
|
|
// FUAvatarSDK
|
|
//
|
|
// Created by Chen on 2021/1/6.
|
|
//
|
|
|
|
#ifndef FUMakeUpChildStrengthKey_h
|
|
#define FUMakeUpChildStrengthKey_h
|
|
|
|
#import "FUKeysDefine.h"
|
|
|
|
FUParamsKeysDefine(FUMakeUpChildStrengthKey,
|
|
|
|
//粉底
|
|
FUMakeUpChildStrengthKeyIntensityFoundation = @"makeup_intensity_foundation",
|
|
|
|
//口红
|
|
FUMakeUpChildStrengthKeyIntensityLip = @"makeup_intensity_lip",
|
|
|
|
//腮红
|
|
FUMakeUpChildStrengthKeyIntensityBlusher = @"makeup_intensity_blusher",
|
|
|
|
//眉毛
|
|
FUMakeUpChildStrengthKeyIntensityEyeBrow = @"makeup_intensity_eyeBrow",
|
|
|
|
//眼影
|
|
FUMakeUpIntensityEye = @"makeup_intensity_eye",
|
|
|
|
//眼线
|
|
FUMakeUpChildStrengthKeyIntensityEyeLiner = @"makeup_intensity_eyeLiner",
|
|
|
|
//睫毛
|
|
FUMakeUpChildStrengthKeyIntensityEyelash = @"makeup_intensity_eyelash",
|
|
|
|
//高光
|
|
FUMakeUpChildStrengthKeyIntensityHighlight = @"makeup_intensity_highlight",
|
|
|
|
//阴影
|
|
FUMakeUpChildStrengthKeyIntensityShadow = @"makeup_intensity_shadow",
|
|
|
|
//美瞳
|
|
FUMakeUpChildStrengthKeyIntensityPupil = @"makeup_intensity_pupil"
|
|
)
|
|
#endif /* FUMakeUpChildStrengthKey_h */
|