覆盖input 函数

This commit is contained in:
xsl
2025-09-29 18:02:56 +08:00
parent 7b41c64a59
commit 55b9c00292
2 changed files with 6 additions and 0 deletions
@@ -1890,6 +1890,11 @@ void TextureLoading::view_changed()
update_uniform_buffers();
}
void TextureLoading::input_event(const vkb::InputEvent& input_event)
{
}
void TextureLoading::on_update_ui_overlay(vkb::Drawer& drawer)
{
if (drawer.header("Settings"))
@@ -220,6 +220,7 @@ public:
//void updateTexture();
float myFloatValue = 1.5f;
void demo1(float* pos);
virtual void input_event(const vkb::InputEvent& input_event) override;
};
std::unique_ptr<vkb::Application> create_texture_loading();