mirror of
https://github.com/BanjoRecomp/BanjoRecomp
synced 2026-06-12 04:57:11 -04:00
9e6966c961
* 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>
17 lines
534 B
C++
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
|