Skip to content

Commit 853894c

Browse files
committed
Ok, now its finally over
1 parent 4ffbce4 commit 853894c

File tree

1 file changed

+8
-2
lines changed
  • common/src/main/resources/data/computercraft/lua/rom/apis

1 file changed

+8
-2
lines changed

common/src/main/resources/data/computercraft/lua/rom/apis/ship.lua

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@
100100
-- @function pullPhysicsTicks
101101
-- @treturn string The event name
102102
-- @treturn ... Physics ticks information
103-
-- @see physics_ticks_event_data
103+
-- @see Physics Ticks Event Data
104104
-- @raise This method errors if there is no Ship associated with the computer
105105

106106
--- Extended Ship API
@@ -234,31 +234,37 @@
234234

235235
--- Physics Ticks Event Data
236236
--
237-
-- @type physics_ticks_event_data
237+
-- @type Physics Ticks Event Data
238238

239239
--- Gets the Ship's buoyancy factor during the physics tick
240240
-- @function getBuoyancyFactor
241241
-- @treturn number The Ship's buoyancy factor
242+
-- @export
242243

243244
--- Whether the Ship is static during the physics tick
244245
-- @function isStatic
245246
-- @treturn boolean Whether the Ship is static
247+
-- @export
246248

247249
--- Whether the Ship is affected by fluid drag during the physics tick
248250
-- @function doFluidDrag
249251
-- @treturn boolean Whether the Ship has fluid drag
252+
-- @export
250253

251254
--- Gets the Ship's Inertia Data during the physics tick
252255
-- @function getInertiaData
253256
-- @treturn table The Ship's Inertia Data comprised of mass and moment of inertia tensor
257+
-- @export
254258

255259
--- Gets the Ship's Pose and Velocity during the physics tick
256260
-- @function getPoseVel
257261
-- @treturn table The Ship's Pose and Velocity data including position, rotation, linear velocity, and angular velocity
262+
-- @export
258263

259264
--- Gets the Force Inducers on the Ship during the physics tick
260265
-- @function getForceInducers
261266
-- @treturn table A table of Force Inducers on the Ship
267+
-- @export
262268

263269
if not ship then
264270
error("Cannot load Ship API on computer")

0 commit comments

Comments
 (0)