Pipecannon.lua

From Moondust Wiki
Revision as of 17:40, 23 July 2016 by Enjl (talk | contribs) (api.load)
Jump to navigation Jump to search

Download latest version

A library which lets you create pipe cannons.


Documentation

This API stores all warps in your level in a table and lets you customise them using the fields below:

pipecannon.exitspeed Table of values corresponding to warp IDs. Sets speed at which the player will get launched. When set to 0, the warp behaves like normal.
pipecannon.angle Table of values corresponding to warp IDs. Defines the angle of deviation in which the player should be shot, clockwise from perpendicular. Must be between -90 and 90. See visual aids below.
pipecannon.SFX Set sound effect for exiting the warp. Default value is 22 (bill blaster).
pipecannon.effect Set visual effect for exiting the warp.

Upward Right Downward Right

The fields angle and exitspeed can also be defined for each warp individually.

Example

pipeAPI = API.load("pipecannon")

-- You can set firing speeds for each warp.
pipeAPI.exitspeed = {10,20,30,10,20,15,25,10,20,50,10,30,0,40}
-- Will ignore speeds set for doors/instant warps. When set to 0, the warp behaves like normal.

-- Firing angles, clockwise from perpendicular
pipeAPI.angle = {}
pipeAPI.angle[12] = 45	-- Also can be set individually. 12 - warp number; 45 - firing angle
pipeAPI.angle[14] = -10

-- Sound effect for firing
pipeAPI.SFX = 22 -- default value (bullet bill sfx), set to 0 for silent
-- Visual effect for firing
pipeAPI.effect = 10 -- set to 0 for none

function onLoop()
	
end

Example level: http://www.mediafire.com/download/dfif4mnef64glbo/Pipe+Cannon+API+Test.zip