Difference between revisions of "Template:LSL Constants/Vehicle Flags"

From Second Life Wiki
Jump to navigation Jump to search
m
Line 1: Line 1:
{{{!}}{{Prettytable}}
{{#if:{{{no_wrapper|}}}||{{{!}}{{Prettytable}}
!Flags
{{!}}-{{Hl2}}
!Value
! colspan="2" {{!}}Flags
!Description
!Description
{{!}}-
{{!}}-}}
{{!}} {{LSLG|VEHICLE_FLAG_NO_DEFLECTION_UP}}
{{!}} {{LSLG|VEHICLE_FLAG_NO_DEFLECTION_UP}}
{{!}} {{LSL Hex|0x1}}
{{!}} {{LSL Hex|0x1}}
Line 43: Line 43:
{{!}} {{LSL Hex|0x200}}
{{!}} {{LSL Hex|0x200}}
{{!}} Makes {{LSLG|mouselook}} {{LSLGC|Camera|camera}} rotate independently of the vehicle. By default the client mouselook camera will rotate about with the vehicle, however when this flag is set the camera direction is independent of the vehicle's rotation.
{{!}} Makes {{LSLG|mouselook}} {{LSLGC|Camera|camera}} rotate independently of the vehicle. By default the client mouselook camera will rotate about with the vehicle, however when this flag is set the camera direction is independent of the vehicle's rotation.
{{!}}}
{{#if:{{{no_wrapper|}}}||{{!}}} }}

Revision as of 13:12, 24 February 2007

Flags Description
VEHICLE_FLAG_NO_DEFLECTION_UP 0x1 This flag prevents linear deflection parallel to world z-axis. This is useful for preventing ground vehicles with large linear deflection, like bumper cars, from climbing their linear deflection into the sky.
VEHICLE_FLAG_LIMIT_ROLL_ONLY 0x2 For vehicles with vertical attractor that want to be able to climb/dive, for instance, airplanes that want to use the banking feature.
VEHICLE_FLAG_HOVER_WATER_ONLY 0x4 Ignore terrain height when hovering.
VEHICLE_FLAG_HOVER_TERRAIN_ONLY 0x8 Ignore water height when hovering.
VEHICLE_FLAG_HOVER_GLOBAL_HEIGHT 0x10 Hover at global height instead of height above ground or water.
VEHICLE_FLAG_HOVER_UP_ONLY 0x20 Hover doesn't push down. Use this flag for hovering vehicles that should be able to jump above their hover height.
VEHICLE_FLAG_LIMIT_MOTOR_UP 0x40 Prevents ground vehicles from motoring into the sky. This flag has a subtle effect when used with conjunction with banking: the strength of the banking will decay when the vehicle no longer experiences collisions. The decay timescale is the same as VEHICLE_BANKING_TIMESCALE. This is to help prevent ground vehicles from steering when they are in mid jump.
VEHICLE_FLAG_MOUSELOOK_STEER 0x80 Steer the vehicle using the mouse. Use this flag to make the angular motor try to make the vehicle turn such that its local x-axis points in the same direction as the client-side camera.
VEHICLE_FLAG_MOUSELOOK_BANK 0x100 Same as above, but relies on banking. It remaps left-right motions of the client camera (also known as "yaw") to rotations about the vehicle's local x-axis.
VEHICLE_FLAG_CAMERA_DECOUPLED 0x200 Makes mouselook camera rotate independently of the vehicle. By default the client mouselook camera will rotate about with the vehicle, however when this flag is set the camera direction is independent of the vehicle's rotation.