Difference between revisions of "02CE"

From GTAMods Wiki
Jump to navigation Jump to search
(load collision)
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
<code>02CE=4,%1d% %2d% %3d% %4d%</code><br>
+
{{OpCode
'''Description''': Gets the height of the ground below the point<br>
+
| games      = {{Icon|t}}
'''Parameter 1''': X-coordinate<br>
+
| command    = GET_GROUND_Z_FOR_3D_COORD
'''Parameter 2''': Y-coordinate<br>
+
| description = Gets the height of the ground beneath the coordinates point
'''Parameter 3''': Z-coordinate<br>
+
| syntax1    = 02CE: [''var''] = ground_z [''flt1''] [''flt2''] [''flt3'']
'''Parameter 4''': Variable to store height of ground<br>
+
| p1t        = [''flt1'']
'''Supports''': GTA3, Vice City, San Andreas<br>
+
| p1d        = X-coordinate
 +
| p2t        = [''flt2'']
 +
| p2d        = Y-coordinate
 +
| p3t        = [''flt3'']
 +
| p3d        = Z-coordinate
 +
| p4t        = [''var'']
 +
| p4d        = Variable to store the height of the ground, a floating-point value
 +
| native      = [[GET_GROUND_Z_FOR_3D_COORD]]
 +
}}
  
This opcode can store the height of the ground below a specific point in the game. If there is no solid ground below that point, the height would be considered as 0.
+
This opcode gets the height in the z-axis of the ground below the specified coordinates point. There is a ground if there is a [[Collision File|collision]] loaded beneath the point. If there is no solid ground below the point, the height would return ''0.0''. For Vice City and San Andreas, if you want to guarantee that the collision at the point is loaded, use opcode [[04E4]] followed by [[038B]] to force the loading of the collision and then immediately retrieve the ground z.
  
==Note==
+
== Keywords ==
Sometimes this opcode is written as this:<br>
 
<code>02CE=4,%4d% %1d% %2d% %3d%</code><br>
 
The fourth parameter is placed in the beginning instead of at the end. This depends on which sascm.ini file you use.<br>
 
[[Mission_Scripting_%28Overview%29#Sanny_Builder|Sanny Builder]] by default:
 
<code>02CE: 16@ = ground_z_at 2@ 3@ 4@</code>
 
 
 
==Keywords==
 
 
get, store, ground, height
 
get, store, ground, height
 
[[Category:OpCodes]]
 

Latest revision as of 04:35, 25 November 2016

GTA III Vice City San Andreas GET_GROUND_Z_FOR_3D_COORD


Description
Gets the height of the ground beneath the coordinates point
Syntax
02CE: [var] = ground_z [flt1] [flt2] [flt3]
Parameter
[flt1]
X-coordinate
[flt2]
Y-coordinate
[flt3]
Z-coordinate
[var]
Variable to store the height of the ground, a floating-point value
Native analog
GET_GROUND_Z_FOR_3D_COORD

This opcode gets the height in the z-axis of the ground below the specified coordinates point. There is a ground if there is a collision loaded beneath the point. If there is no solid ground below the point, the height would return 0.0. For Vice City and San Andreas, if you want to guarantee that the collision at the point is loaded, use opcode 04E4 followed by 038B to force the loading of the collision and then immediately retrieve the ground z.

Keywords

get, store, ground, height