Graphics::drawScaleformMovie3dNonAdditive: Difference between revisions

From RAGE Multiplayer Wiki
(yay)
 
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
Originally called '_DRAW_SCALEFORM_MOVIE_3D'. Since the actual 'DRAW_SCALEFORM_MOVIE_3D' native was found, what the heck does this one do differently?
Originally called '_DRAW_SCALEFORM_MOVIE_3D'. Since the actual 'DRAW_SCALEFORM_MOVIE_3D' native was found, what the heck does this one do differently?
==Syntax==
==Syntax==
<syntaxhighlight lang="javascript">graphics.drawScaleformMovie3dNonAdditive(scaleform, posX, posY, posZ, rotX, rotY, rotZ, p7, p8, p9, scaleX, scaleY, scaleZ, p13);</syntaxhighlight>
<syntaxhighlight lang="javascript">mp.game.graphics.drawScaleformMovie3dNonAdditive(scaleform, posX, posY, posZ, rotX, rotY, rotZ, p7, p8, p9, scaleX, scaleY, scaleZ, p13);</syntaxhighlight>
=== Required Arguments ===
=== Required Arguments ===
*'''scaleform:''' int
*'''scaleform:''' int
Line 16: Line 16:
*'''scaleY:''' float
*'''scaleY:''' float
*'''scaleZ:''' float
*'''scaleZ:''' float
*'''p13:''' unknown (to be checked)
*'''p13:''' int
 
===Return value===
===Return value===
*'''Undefined'''
*'''Undefined'''
==Example==
==Example==
<syntaxhighlight lang="javascript">
<syntaxhighlight lang="javascript">
todo
// todo
</syntaxhighlight>
</syntaxhighlight>
==See also==
==See also==
{{Graphics_function_c}}
{{Graphics_s_function_c}}
[[Category:Clientside API]]
[[Category:Clientside API]]
[[Category:TODO: Example]]
[[Category:TODO: Example]]

Latest revision as of 17:06, 9 January 2018

Originally called '_DRAW_SCALEFORM_MOVIE_3D'. Since the actual 'DRAW_SCALEFORM_MOVIE_3D' native was found, what the heck does this one do differently?

Syntax

mp.game.graphics.drawScaleformMovie3dNonAdditive(scaleform, posX, posY, posZ, rotX, rotY, rotZ, p7, p8, p9, scaleX, scaleY, scaleZ, p13);

Required Arguments

  • scaleform: int
  • posX: float
  • posY: float
  • posZ: float
  • rotX: float
  • rotY: float
  • rotZ: float
  • p7: float
  • p8: float
  • p9: float
  • scaleX: float
  • scaleY: float
  • scaleZ: float
  • p13: int

Return value

  • Undefined

Example

// todo

See also