Update docs, updated ldoc generated files

This commit is contained in:
Insality
2020-03-21 21:43:06 +03:00
parent ca78b10794
commit b7e58950aa
26 changed files with 2354 additions and 316 deletions

View File

@@ -17,6 +17,9 @@ local component = require("druid.component")
local M = component.create("blocker", { const.ON_INPUT_HIGH })
--- Component init function
-- @function blocker:init
-- @tparam node node Gui node
function M.init(self, node)
self.node = self:get_node(node)

View File

@@ -72,7 +72,7 @@ end
--- Strict button click area. Useful for
-- no click events outside stencil node
-- @function button:set_click_zone
-- @function hover:set_click_zone
-- @tparam node zone Gui node
function M.set_click_zone(self, zone)
self.click_zone = self:get_node(zone)

View File

@@ -1,6 +1,6 @@
--- Druid input text component.
-- Carry on user text input
-- @local unimplemented
-- UNIMPLEMENTED
-- @module druid.input
local component = require("druid.component")

View File

@@ -1,7 +1,7 @@
--- Druid UI Library.
-- Powerful Defold component based UI library. Use standart
-- components or make your own game-specific to make amazing
-- GUI in your games.
-- components or make your own game-specific components to
-- make amazing GUI in your games.
--
-- Contains the several basic components and examples
-- to how to do your custom complex components to