mirror of
https://github.com/omltcat/dcs-lua-definitions.git
synced 2025-11-10 15:48:52 +00:00
Add functions in server GUI
Add AI enum table Add some missing functions
This commit is contained in:
@@ -10,20 +10,23 @@
|
||||
---@field weapon_name string?
|
||||
---@field target Unit?
|
||||
---@field comment string?
|
||||
---@field subPlace number?
|
||||
---@field place Airbase?
|
||||
---@field subPlace integer?
|
||||
|
||||
---`vec2.x = vec3.x = north`<br>`vec2.y = vec3.z = east`
|
||||
---@class vec2
|
||||
---@field x number positive x is north
|
||||
---@field y number positive y is east
|
||||
|
||||
---`vec3.x = north`<br>`vec3.y = up`<br>`vec3.z = east`
|
||||
---`vec3.x = north`<br>`vec3.y = up`<br>`vec3.z = east`<br>
|
||||
---
|
||||
---@class vec3
|
||||
---@field x number positive x is north
|
||||
---@field y number positive y is up
|
||||
---@field z number positive z is east
|
||||
|
||||
---A table describing how a unit's local nose, up, right axes translate to world axes using three unit vectors. Also contains its location.<br>`pos.x = vec3` unit vector of nose direction<br>`pos.y = vec3` unit vector of up direction<br>`pos.z = vec3` unit vector of right direction<br>`pos.p = vec3` location of the object
|
||||
---A table describing how a unit's local nose, up, right axes translate to world axes using three unit vectors. Also contains its location.<br>`pos.x = vec3` unit vector of nose direction<br>`pos.y = vec3` unit vector of up direction<br>`pos.z = vec3` unit vector of right direction<br>`pos.p = vec3` location of the object<br>
|
||||
---
|
||||
---@class pos3
|
||||
---@field x vec3 nose unit vector
|
||||
---@field y vec3 up unit vector
|
||||
|
||||
Reference in New Issue
Block a user