Streaming::requestNamedPtfxAsset: Difference between revisions

From RAGE Multiplayer Wiki
(yay)
 
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
  From the b678d decompiled scripts:<br><br> STREAMING::REQUEST_NAMED_PTFX_ASSET('core_snow');<br> STREAMING::REQUEST_NAMED_PTFX_ASSET('fm_mission_controler');<br> STREAMING::REQUEST_NAMED_PTFX_ASSET('proj_xmas_firework');<br> STREAMING::REQUEST_NAMED_PTFX_ASSET('scr_apartment_mp');<br> STREAMING::REQUEST_NAMED_PTFX_ASSET('scr_biolab_heist');<br> STREAMING::REQUEST_NAMED_PTFX_ASSET('scr_indep_fireworks');<br> STREAMING::REQUEST_NAMED_PTFX_ASSET('scr_indep_parachute');<br> STREAMING::REQUEST_NAMED_PTFX_ASSET('scr_indep_wheelsmoke');<br> STREAMING::REQUEST_NAMED_PTFX_ASSET('scr_mp_cig_plane');<br> STREAMING::REQUEST_NAMED_PTFX_ASSET('scr_mp_creator');<br> STREAMING::REQUEST_NAMED_PTFX_ASSET('scr_mp_tankbattle');<br> STREAMING::REQUEST_NAMED_PTFX_ASSET('scr_ornate_heist');<br> STREAMING::REQUEST_NAMED_PTFX_ASSET('scr_prison_break_heist_station');
  From the b678d decompiled scripts:<br><br> STREAMING::REQUEST_NAMED_PTFX_ASSET('core_snow');<br> STREAMING::REQUEST_NAMED_PTFX_ASSET('fm_mission_controler');<br> STREAMING::REQUEST_NAMED_PTFX_ASSET('proj_xmas_firework');<br> STREAMING::REQUEST_NAMED_PTFX_ASSET('scr_apartment_mp');<br> STREAMING::REQUEST_NAMED_PTFX_ASSET('scr_biolab_heist');<br> STREAMING::REQUEST_NAMED_PTFX_ASSET('scr_indep_fireworks');<br> STREAMING::REQUEST_NAMED_PTFX_ASSET('scr_indep_parachute');<br> STREAMING::REQUEST_NAMED_PTFX_ASSET('scr_indep_wheelsmoke');<br> STREAMING::REQUEST_NAMED_PTFX_ASSET('scr_mp_cig_plane');<br> STREAMING::REQUEST_NAMED_PTFX_ASSET('scr_mp_creator');<br> STREAMING::REQUEST_NAMED_PTFX_ASSET('scr_mp_tankbattle');<br> STREAMING::REQUEST_NAMED_PTFX_ASSET('scr_ornate_heist');<br> STREAMING::REQUEST_NAMED_PTFX_ASSET('scr_prison_break_heist_station');
==Syntax==
==Syntax==
<syntaxhighlight lang="javascript">streaming.requestNamedPtfxAsset(fxName);</syntaxhighlight>
<syntaxhighlight lang="javascript">mp.game.streaming.requestNamedPtfxAsset(fxName);</syntaxhighlight>
=== Required Arguments ===
=== Required Arguments ===
*'''fxName:''' String
*'''fxName:''' String
Line 8: Line 8:
==Example==
==Example==
<syntaxhighlight lang="javascript">
<syntaxhighlight lang="javascript">
todo
// todo
</syntaxhighlight>
</syntaxhighlight>
==See also==
==See also==
{{Streaming_function_c}}
{{Streaming_functions_c}}
[[Category:Clientside API]]
[[Category:Clientside API]]
[[Category:TODO: Example]]
[[Category:TODO: Example]]

Latest revision as of 03:35, 27 May 2024

From the b678d decompiled scripts:

STREAMING::REQUEST_NAMED_PTFX_ASSET('core_snow');
STREAMING::REQUEST_NAMED_PTFX_ASSET('fm_mission_controler');
STREAMING::REQUEST_NAMED_PTFX_ASSET('proj_xmas_firework');
STREAMING::REQUEST_NAMED_PTFX_ASSET('scr_apartment_mp');
STREAMING::REQUEST_NAMED_PTFX_ASSET('scr_biolab_heist');
STREAMING::REQUEST_NAMED_PTFX_ASSET('scr_indep_fireworks');
STREAMING::REQUEST_NAMED_PTFX_ASSET('scr_indep_parachute');
STREAMING::REQUEST_NAMED_PTFX_ASSET('scr_indep_wheelsmoke');
STREAMING::REQUEST_NAMED_PTFX_ASSET('scr_mp_cig_plane');
STREAMING::REQUEST_NAMED_PTFX_ASSET('scr_mp_creator');
STREAMING::REQUEST_NAMED_PTFX_ASSET('scr_mp_tankbattle');
STREAMING::REQUEST_NAMED_PTFX_ASSET('scr_ornate_heist');
STREAMING::REQUEST_NAMED_PTFX_ASSET('scr_prison_break_heist_station');

Syntax

mp.game.streaming.requestNamedPtfxAsset(fxName);

Required Arguments

  • fxName: String

Return value

  • Undefined

Example

// todo

See also