コード例 #1
0
 inline void Display_SetAlpha(float fAlpha) { InternalGetValue().Display_SetAlpha(fAlpha); }
コード例 #2
0
 inline void Display_SetXYScale(float fXScale, float fYScale) { InternalGetValue().Display_SetXYScale(fXScale, fYScale); }
コード例 #3
0
 inline void Display_SetZScale(float fZScale) { InternalGetValue().Display_SetZScale(fZScale); }
コード例 #4
0
 /// \copydoc VScaleformValue::Invoke()
 inline const VScaleformValue Invoke(const char* szMethodName, const VScaleformValue *pArgs, unsigned int uiNumArgs)
 {
   return InternalGetValue().Invoke(szMethodName, pArgs, uiNumArgs);
 }
コード例 #5
0
 /// \copydoc VScaleformValue::Display_GotoLabeledFrame
 inline bool Display_GotoLabeledFrame(const char* szLabel, bool bPlay = false) { return InternalGetValue().Display_GotoLabeledFrame(szLabel, bPlay); }
コード例 #6
0
 inline void SetArrayElement(unsigned int uiIndex, const VScaleformValue& value) { InternalGetValue().SetArrayElement(uiIndex, value); }
コード例 #7
0
 /// \copydoc VScaleformValue::SetMember()
 inline bool SetMember(const char* szMemberName, const VScaleformValue& value) { return InternalGetValue().SetMember(szMemberName, value); }
コード例 #8
0
 // Display Info Setters (Object references are set directly).
 inline void Display_SetVisible(bool bVisible) { InternalGetValue().Display_SetVisible(bVisible); }
コード例 #9
0
 inline void Display_SetX(float fX) { InternalGetValue().Display_SetX(fX); }
コード例 #10
0
 inline void SetNumber(float fValue) 
 { 
   WaitForAdvanceFinished(); 
   InternalGetValue().SetNumber(fValue); 
   UpdateActionScript();
 }
コード例 #11
0
 inline void SetString(const char* szString) 
 { 
   WaitForAdvanceFinished(); 
   InternalGetValue().SetString(szString); 
   UpdateActionScript(); 
 }
コード例 #12
0
 inline void SetUInt(unsigned int uiValue) 
 { 
   WaitForAdvanceFinished(); 
   InternalGetValue().SetUInt(uiValue); 
   UpdateActionScript(); 
 }  
コード例 #13
0
 inline void SetInt(int iValue) 
 { 
   WaitForAdvanceFinished(); 
   InternalGetValue().SetInt(iValue); 
   UpdateActionScript(); 
 }
コード例 #14
0
 inline void SetBool(bool bValue) 
 { 
   WaitForAdvanceFinished(); 
   InternalGetValue().SetBool(bValue); 
   UpdateActionScript(); 
 }
コード例 #15
0
 inline void Display_SetFOV(float fFov) { InternalGetValue().Display_SetFOV(fFov); }
コード例 #16
0
 inline void Display_SetXY(float fX, float fY) { InternalGetValue().Display_SetXY(fX, fY); }
コード例 #17
0
 inline void SetArraySize(unsigned int uiSize) { InternalGetValue().SetArraySize(uiSize); }
コード例 #18
0
 inline void Display_SetZ(float fZ) { InternalGetValue().Display_SetZ(fZ); }
コード例 #19
0
 /// \copydoc VScaleformValue::GetMemberValue()
 inline const VScaleformValue GetMemberValue(const char* szMemberName) { return InternalGetValue().GetMemberValue(szMemberName); }
コード例 #20
0
 inline void Display_SetXYRotation(float fXDeg, float fYDeg) { InternalGetValue().Display_SetXYRotation(fXDeg, fYDeg); }
コード例 #21
0
 /// \copydoc VScaleformValue::DeleteMember()
 inline bool DeleteMember(const char* szMemberName) { return InternalGetValue().DeleteMember(szMemberName); }
コード例 #22
0
 inline void Display_SetRotation(float fDeg) { InternalGetValue().Display_SetRotation(fDeg); }
コード例 #23
0
 inline void SetNull() 
 { 
   WaitForAdvanceFinished(); 
   InternalGetValue().SetNull(); 
   UpdateActionScript(); 
 }
コード例 #24
0
 /// \copydoc VScaleformValue::Display_GotoFrame
 inline bool Display_GotoFrame(unsigned int uiFrameIndex, bool bPlay = false) { return InternalGetValue().Display_GotoFrame(uiFrameIndex, bPlay); }