-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
style: change screenpicker case type
- Loading branch information
Showing
6 changed files
with
23 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 9 additions & 9 deletions
18
...lude/cubos/engine/screenpicker/plugin.hpp → ...ude/cubos/engine/screen_picker/plugin.hpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,37 @@ | ||
/// @dir | ||
/// @brief @ref screenpicker-plugin plugin directory. | ||
/// @brief @ref screen-picker-plugin plugin directory. | ||
|
||
/// @file | ||
/// @brief Plugin entry point. | ||
/// @ingroup screenpicker-plugin | ||
/// @ingroup screen-picker-plugin | ||
|
||
#pragma once | ||
|
||
#include <cubos/engine/cubos.hpp> | ||
#include <cubos/engine/screenpicker/screenpicker.hpp> | ||
#include <cubos/engine/screen_picker/screen_picker.hpp> | ||
|
||
namespace cubos::engine | ||
{ | ||
/// @defgroup screenpicker-plugin ScreenPicker | ||
/// @defgroup screen-picker-plugin ScreenPicker | ||
/// @ingroup engine | ||
/// @brief Used to select entities and gizmos by clicking them. | ||
/// | ||
/// ## Resources | ||
/// - @ref ScreenPicker - provides a texture to store entity and gizmo ids. | ||
/// | ||
/// ## Startup tags | ||
/// - `cubos.screenpicker.init` - the ScreenPicker resource is initialized, after `cubos.window.init` | ||
/// - `cubos.screenPicker.init` - the ScreenPicker resource is initialized, after `cubos.window.init` | ||
/// | ||
/// ## Tags | ||
/// - `cubos.screenpicker.clear` - the picking texture is cleared | ||
/// - `cubos.screenpicker.resize` - window resize events are handled and the ScreenPicker texture is resized, after | ||
/// `cubos.window.poll` and before `cubos.screenpicker.clear`. | ||
/// - `cubos.screenPicker.clear` - the picking texture is cleared | ||
/// - `cubos.screenPicker.resize` - window resize events are handled and the ScreenPicker texture is resized, after | ||
/// `cubos.window.poll` and before `cubos.screenPicker.clear`. | ||
/// | ||
/// ## Dependencies | ||
/// - @ref window-plugin | ||
|
||
/// @brief Plugin entry function. | ||
/// @param cubos @b CUBOS. main class. | ||
/// @ingroup screenpicker-plugin | ||
/// @ingroup screen-picker-plugin | ||
void screenPickerPlugin(Cubos& cubos); | ||
} // namespace cubos::engine |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...ubos/engine/screenpicker/screenpicker.cpp → ...os/engine/screen_picker/screen_picker.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters