Difference between revisions of "Fleti fixed camera"
From Unofficial QEdit Wiki Guide
(Created page with "==Syntax== ''Syntax:'' <span style='font-size:12px;font-family:courier'><span style='color:green'>fleti_fixed_camera_V3</span> register1</span> * ''register1 = Camera psychic...") |
(No difference)
|
Revision as of 00:16, 14 February 2022
Contents
Syntax
Syntax: fleti_fixed_camera_V3 register1
- register1 = Camera psychical location x co cords.
- register2 = Camera psychical location y co cords.
- register3 = Camera psychical location z co cords.
- register4 = Camera look at location x co cords.
- register5 = Camera look at location y co cords.
- register6 = Camera look at location z co cords.
Use
Used to make a stationary camera angle using floats.
Example
//This example will make a stationary camera looking at Principal Tyrell's desk on pioneer 2. Get the values for the registers using the 3d view in qedit.
100: leti R1, 0 //Camera psychical location x co cords.
leti R2, 13 //Camera psychical location y co cords.
leti R3, -1982 //Camera psychical location z co cords.
leti R4, 0 //Camera look at location x co cords.
leti R5, 13 //Camera look at location y co cords.
leti R6, -1988 //Camera look at location z co cords.
leti_fixed_camera_V3 R1 //Tells where to start the continuation of registry strings to be used for the camera information.
ret