Documentation for the core framework used in Zarillion's HandyNotes expansion plugins.
ns.poi.
Base class for other POI Classes. POIs are only displayed when hovering a node.
POI({41176055, 41526214, 41995819, 43565838})
POI({color = 'Green', 41176055, 41526214}) -- this also works, but is not recommended
POI({color = 'Red', points = {41176055, 41526214, 41995819, 43565838}})
A POI can have just a table of coordinates, those will be marked by a dot. The color is by default blue and can be changed by the user through the settings. POIs can also have following properties:
ns.poi.POI
requires the following properties:
points
([int]) (required)
ns.poi.POI
supports the following properties:
color
(color)
icon
(string)
quest
(int / [int])
questAny
(int / [int])
questDeps
(int / [int])
A Path is used to draw lines between multiple coordinates.
Path({41176055, 41526214, 41995819, 43565838})
Path({color = 'Red', points = {41176055, 41526214, 41995819, 43565838}})
This adds a Segmented Line between two far apart coordinates.
Line({41176055, 41526214})
Line({color = 'Red', points = {41176055, 41526214}})
Uses Line as its base class but adds an arrow to the last segment.
Arrow({41176055, 41526214})
This is a function which returns coordinates of a circle.
Path({Circle({origin = 50005000, radius = 5.5})})
ns.poi.Cirlce
requires the following properties:
origin
(int)
radius
(float)
This is a function which returns coordinates of a square.
Path({Square({origin = 50005000, radius = 5.5})})
ns.poi.Square
requires the following properties:
origin
(int)
width
(float)