30 lines
1011 B
Objective-C
Executable File
30 lines
1011 B
Objective-C
Executable File
//
|
|
// FULightMakeUpTextureKeyDefineKey.h
|
|
// FUAvatarSDK
|
|
//
|
|
// Created by Chen on 2021/1/14.
|
|
//
|
|
|
|
#ifndef FULightMakeUpTextureKeyDefineKey_h
|
|
#define FULightMakeUpTextureKeyDefineKey_h
|
|
|
|
#import "FUKeysDefine.h"
|
|
|
|
FUParamsKeysDefine(FULightMakeUpTextureKey,
|
|
//眉毛
|
|
FULightMakeUpTextureKeyTexBrow = @"tex_brow",
|
|
//眼影
|
|
FULightMakeUpTextureKeyTexEye = @"tex_eye",
|
|
//美瞳
|
|
FULightMakeUpTextureKeyTexPupil = @"tex_pupil",
|
|
//睫毛
|
|
FULightMakeUpTextureKeyTexEyeLash = @"tex_eyeLash",
|
|
//口红高光
|
|
FULightMakeUpTextureKeyTexHighlight = @"tex_highlight",
|
|
//眼线
|
|
FULightMakeUpTextureKeyTexEyeLiner = @"tex_eyeLiner",
|
|
//腮红
|
|
FULightMakeUpTextureKeyTexBlusher = @"tex_blusher"
|
|
)
|
|
#endif /* FULightMakeUpTextureKeyDefineKey_h */
|