Files
BanjoRecomp/include/banjo_launcher.h
T
Wiseguy 9e6966c961 Launcher background (#58)
* Begin implementing launcher background

* Add keyframe system for launcher.

* Mirror Banjo.

* More work on animations.

* Update RecompFrontend.

* Update RT64.

* Fix linux build

* adjust launcher anim and launcher

---------

Co-authored-by: Dario <dariosamo@gmail.com>
Co-authored-by: Reonu <reonuyt@gmail.com>
Co-authored-by: thecozies <79979276+thecozies@users.noreply.github.com>
2026-01-12 17:15:56 -05:00

17 lines
534 B
C++

#ifndef __BANJO_LAUNCHER_H__
#define __BANJO_LAUNCHER_H__
#include "recompui/recompui.h"
namespace banjo {
void launcher_animation_setup(recompui::LauncherMenu *menu, recompui::Element *title);
void launcher_animation_update(recompui::LauncherMenu *menu);
constexpr float launcher_options_right_position_start = 96.0f;
constexpr float launcher_options_right_position_end = 96.0f + 24.0f;
constexpr float launcher_options_top_offset = 96.0f;
constexpr float launcher_options_title_offset = 120.0f;
}
#endif