Difference between revisions of "Fleti fixed camera"
From Unofficial QEdit Wiki Guide
(→Example) |
(→Syntax) |
||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
==Syntax== | ==Syntax== | ||
− | ''Syntax:'' <span style='font-size:12px;font-family:courier'><span style='color: | + | ''Syntax:'' <span style='font-size:12px;font-family:courier'><span style='color:red'>fleti_fixed_camera_V3</span> register1</span> |
* ''register1 = Camera psychical location x co cords.'' | * ''register1 = Camera psychical location x co cords.'' | ||
Line 23: | Line 23: | ||
<span style='color:red'> fleti </span>R5, 13 <span style='color:orange'>//Camera look at location y co cords.</span> | <span style='color:red'> fleti </span>R5, 13 <span style='color:orange'>//Camera look at location y co cords.</span> | ||
<span style='color:red'> fleti </span>R6, -1988 <span style='color:orange'>//Camera look at location z co cords.</span> | <span style='color:red'> fleti </span>R6, -1988 <span style='color:orange'>//Camera look at location z co cords.</span> | ||
− | <span style='color:red'> fleti_fixed_camera_V3 | + | <span style='color:red'> fleti_fixed_camera_V3</span> R1<span style='color:orange'>//Tells where to start the continuation of registry strings to be used for the camera information.</span> |
<span style='color:green'> ret </span> | <span style='color:green'> ret </span> | ||
==Also see== | ==Also see== | ||
[[leti]], [[ret]] | [[leti]], [[ret]] |
Latest revision as of 12:38, 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: fleti R1, 0 //Camera psychical location x co cords.
fleti R2, 13 //Camera psychical location y co cords.
fleti R3, -1982 //Camera psychical location z co cords.
fleti R4, 0 //Camera look at location x co cords.
fleti R5, 13 //Camera look at location y co cords.
fleti R6, -1988 //Camera look at location z co cords.
fleti_fixed_camera_V3 R1//Tells where to start the continuation of registry strings to be used for the camera information.
ret