local panthera = require("panthera.panthera") local helper = require("druid.helper") local event = require("event.event") local character_animation_blend = require("example.examples.panthera.animation_blend.character_animation_blend") ---@class examples.animation_blend: druid.widget ---@field root node ---@field root_size vector3 ---@field animation_idle panthera.animation ---@field animation_vertical panthera.animation ---@field animation_horizontal panthera.animation ---@field rich_text druid.rich_text ---@field on_update event local M = {} function M:init() self.root = self:get_node("root") self.root_size = gui.get_size(self.root) self.druid:new_lang_text("text_hint", "ui_example_panthera_animation_blend_hint") self.animation_idle = panthera.create_gui(character_animation_blend, self:get_template(), self:get_nodes()) self.animation_vertical = panthera.create_gui(character_animation_blend, self:get_template(), self:get_nodes()) self.animation_horizontal = panthera.create_gui(character_animation_blend, self:get_template(), self:get_nodes()) panthera.play(self.animation_idle, "idle", { is_loop = true, }) self:setup_rich_text() self.on_update = event.create() end ---@param action_id hash ---@param action action function M:on_input(action_id, action) if action_id == nil and gui.pick_node(self.root, action.x, action.y) then local root_screen_pos = gui.get_screen_position(self.root) local koef_x, koef_y = helper.get_screen_aspect_koef() local dx = (action.screen_x - root_screen_pos.x) * koef_x -- -root_size.x / 2 .. root_size.x / 2 local animation_progress_x = (dx + self.root_size.x / 2) / self.root_size.x -- 0 .. 1 panthera.set_time(self.animation_horizontal, "horizontal", animation_progress_x) local dy = (action.screen_y - root_screen_pos.y) * koef_y -- -root_size.y / 2 .. root_size.y / 2 local animation_progress_y = (dy + self.root_size.y / 2) / self.root_size.y -- 0 .. 1 panthera.set_time(self.animation_vertical, "vertical", animation_progress_y) end end function M:update() self.on_update:trigger() end function M:setup_rich_text() self.rich_text = self.druid:new_rich_text("rich_text_kenney", "Character assets by Kenney") local tagged = self.rich_text:tagged("link") for index = 1, #tagged do ---@type druid.rich_text.word local word = tagged[index] self.druid:new_button(word.node, function() sys.open_url("https://kenney.nl/") end) end end ---@param properties_panel properties_panel function M:properties_control(properties_panel) local vertical_time = panthera.get_time(self.animation_vertical) local vertical_slider = properties_panel:add_slider("ui_animation_vertical", vertical_time, function(value) panthera.set_time(self.animation_vertical, "vertical", value) end) local horizontal_time = panthera.get_time(self.animation_horizontal) local horizontal_slider = properties_panel:add_slider("ui_animation_horizontal", horizontal_time, function(value) panthera.set_time(self.animation_horizontal, "horizontal", value) end) self.on_update:subscribe(function() vertical_slider:set_value(panthera.get_time(self.animation_vertical)) horizontal_slider:set_value(panthera.get_time(self.animation_horizontal)) end) end return M