AnyPortrait > 스크립트 > 컨트롤 파라미터

컨트롤 파라미터


컨트롤 파라미터를 스크립트로 참조하거나 제어할 수 있습니다.
컨트롤 파라미터를 제어하면 이와 연결된 모디파이어가 영향을 받습니다.


public apControlParam GetControlParam ( string controlParamName )
Description

   컨트롤 파라미터를 조회합니다.


Parameters

   string controlParamName : 컨트롤 파라미터 이름


Return

   apControlParam : 요청된 이름을 가지는 컨트롤 파라미터 (없을시 null 리턴)


public bool IsControlParamExist ( string controlParamName )
Description

   해당 이름을 가진 컨트롤 파라미터가 존재하는지 확인합니다.


Parameters

   string controlParamName : 컨트롤 파라미터 이름


Return

   bool : 요청된 이름을 가지는 컨트롤 파라미터가 존재하는지 여부


public bool SetControlParamInt ( string controlParamName, int intValue )
public bool SetControlParamInt ( apControlParam controlParam, int intValue )
Description

   정수형(int) 타입의 컨트롤 파라미터의 값을 지정합니다.
   컨트롤 파라미터의 범위를 벗어난다면 최소 또는 최대값으로 제한됩니다.


Parameters

   string controlParamName : 컨트롤 파라미터 이름
   apControlParam controlParam : 값을 지정하고자 하는 컨트롤 파라미터
   ​int intValue : 지정하려는 정수형(int) 값


Return

   bool : 값이 적용된 컨트롤 파라미터가 존재하여 처리가 성공했는지 여부


public bool SetControlParamFloat ( string controlParamName, float floatValue )
public bool SetControlParamFloat ( apControlParam controlParam, float floatValue )
Description

   실수형(float) 타입의 컨트롤 파라미터의 값을 지정합니다.
   컨트롤 파라미터의 범위를 벗어난다면 최소 또는 최대값으로 제한됩니다.


Parameters

   string controlParamName : 컨트롤 파라미터 이름
   apControlParam controlParam : 값을 지정하고자 하는 컨트롤 파라미터
   ​float floatValue : 지정하려는 실수형(float) 값


Return

   bool : 값이 적용된 컨트롤 파라미터가 존재하여 처리가 성공했는지 여부


public bool SetControlParamVector2 ( string controlParamName, Vector2 vec2Value )
public bool SetControlParamVector2 ( apControlParam controlParam, Vector2 vec2Value )
Description

   2차원 벡터(Vector2) 타입의 컨트롤 파라미터의 값을 지정합니다.
   X, Y축에 대해 각각 컨트롤 파라미터의 범위를 벗어난다면 최소 또는 최대값으로 제한됩니다.


Parameters

   string controlParamName : 컨트롤 파라미터 이름
   apControlParam controlParam : 값을 지정하고자 하는 컨트롤 파라미터
   Vector2 vec2Value : 지정하려는 2차원 벡터(Vector2) 값


Return

   bool : 값이 적용된 컨트롤 파라미터가 존재하여 처리가 성공했는지 여부


public bool SetControlParamDefaultValue ( string controlParamName )
Description

   컨트롤 파라미터의 값을 기본값으로 초기화합니다.


Parameters

   string controlParamName : 컨트롤 파라미터 이름


Return

   bool : 값이 적용된 컨트롤 파라미터가 존재하여 처리가 성공했는지 여부