コード例 #1
0
 public static void EyeHalfOpenLeftEditor(this IEyeMorphView entity)
 {
     entity.EyeHalfOpenLeft = GUIEditor(nameof(entity.EyeHalfOpenLeft), entity.EyeHalfOpenLeft);
 }
コード例 #2
0
 public static void EyeOpenRightEditor(this IEyeMorphView entity)
 {
     entity.EyeOpenRight = GUIEditor(nameof(entity.EyeOpenRight), entity.EyeOpenRight);
 }
コード例 #3
0
 public static void SmailRightEditor(this IEyeMorphView entity)
 {
     entity.SmailRight = GUIEditor(nameof(entity.SmailRight), entity.SmailRight);
 }
コード例 #4
0
 public EyeMorphController(IEyeMorphService service, IEyeBlinkService morph, IEyeMorphView view)
 {
     _service = service;
     _morph   = morph;
     _view    = view;
 }