mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-06 03:29:44 -06:00
Feature/alex is flying (#729)
* Correctly specify maximum text sizes for grids * Use StaticScale transformations in grids and remove fixed radius * Fix Verifier to let grids accept non-integer min and max sizes * Add a new scale that changes it's value based on the current time and a reference time * Add a proper radiosphere that grows in real time (closes #728) * Add default globe customization folders to the assets (closes #724) * Add new dashboarditem that shows the current camera velocity (closes #702) * Add ability to add interesting times to a scene (closes #715) * Reenable keybindings gui element * Add ShortcutManager * Add ability to bind keyless keybinds to use as arbitrary shortcuts (closes #710)
This commit is contained in:
@@ -54,6 +54,7 @@ namespace interaction {
|
||||
struct JoystickInputStates;
|
||||
class KeybindingManager;
|
||||
class NavigationHandler;
|
||||
class ShortcutManager;
|
||||
} // namespace interaction
|
||||
namespace performance { class PerformanceManager; }
|
||||
namespace properties { class PropertyOwner; }
|
||||
@@ -87,6 +88,7 @@ configuration::Configuration& gConfiguration();
|
||||
interaction::JoystickInputStates& gJoystickInputStates();
|
||||
interaction::KeybindingManager& gKeybindingManager();
|
||||
interaction::NavigationHandler& gNavigationHandler();
|
||||
interaction::ShortcutManager& gShortcutManager();
|
||||
performance::PerformanceManager& gPerformanceManager();
|
||||
properties::PropertyOwner& gRootPropertyOwner();
|
||||
properties::PropertyOwner& gScreenSpaceRootPropertyOwner();
|
||||
@@ -118,6 +120,7 @@ static interaction::JoystickInputStates& joystickInputStates =
|
||||
detail::gJoystickInputStates();
|
||||
static interaction::KeybindingManager& keybindingManager = detail::gKeybindingManager();
|
||||
static interaction::NavigationHandler& navigationHandler = detail::gNavigationHandler();
|
||||
static interaction::ShortcutManager& shortcutManager = detail::gShortcutManager();
|
||||
static performance::PerformanceManager& performanceManager =
|
||||
detail::gPerformanceManager();
|
||||
static properties::PropertyOwner& rootPropertyOwner = detail::gRootPropertyOwner();
|
||||
|
||||
Reference in New Issue
Block a user