Rename bounce -> default style, start make new example pages

This commit is contained in:
Insality
2020-02-24 00:03:29 +03:00
parent 822db35e84
commit a81d49de9d
25 changed files with 50 additions and 24 deletions

View File

@@ -1,6 +1,9 @@
--- Component to handle basic GUI button
-- @module druid.button
--- Button gui component
--@class druid
--- Component events
-- @table Events
-- @tfield druid_event on_click On release button callback
@@ -22,7 +25,10 @@
--- Component style params
-- @table Style
-- @tfield function on_click (self, node)
-- @tfield function on_click_disabled (self, node)
-- @tfield function on_hover (self, node, hover_state)
-- @tfield function on_set_enabled (self, node, enabled_state)
-- @tfield bool IS_HOVER
local Event = require("druid.event")
local const = require("druid.const")

View File

@@ -1,5 +1,5 @@
local settings = require("druid.system.settings")
local anims = require("druid.styles.bounce.anims")
local anims = require("druid.styles.default.anims")
local M = {}