-
Notifications
You must be signed in to change notification settings - Fork 20
Library Rangers BlackboardStatus
Gabriel edited this page Sep 28, 2023
·
4 revisions
Provides access to app::player::BlackboardStatus
from Sonic Frontiers.
Determines whether a state flag is set.
-
in_name
- The name of an enum member from theStateFlags
enum.
A boolean value representing whether the state flag is set.
Code
//
#include "BlackboardStatus" noemit
//
{
bool isPhantomRush = IS_STATE_FLAG(IsPhantomRush);
}
Determines whether a world flag is set.
-
in_name
- The name of an enum member from theWorldFlags
enum.
A boolean value representing whether the world flag is set.
Code
//
#include "BlackboardStatus" noemit
//
{
bool isCyberSpace = IS_WORLD_FLAG(IsCyberSpace);
}
A struct representation of app::player::BlackboardStatus
.
-
-
An instance of
app::player::BlackboardContent
, the base class forapp::player::BlackboardStatus
.
-
An instance of
-
- Determines if the current player is in their Super form.
-
- Bit flags representing state statuses.
-
- Bit flags representing world statuses.
Gets an instance of app::player::BlackboardStatus
.
A pointer to an instance of app::player::BlackboardStatus
.
Code
//
#lib "BlackboardStatus"
//
{
var pBlackboardStatus = BlackboardStatus.Get();
}
Determines if the current player is in their Super form.
A boolean value representing whether the current player is in their Super form.
An enum containing known state flags.
-
- The player is boosting.
-
- The player is performing a recovery jump.
-
- The player is air boosting.
-
- The player has jumped on a rail.
-
- The player is grinding on a rail.
-
- The player is jumping.
-
- The player has double jumped.
-
- The player has stomp bounced.
-
- The player is falling.
-
- The player is stomping.
-
- The player is diving.
-
- The player is boosting whilst diving.
-
- The player is using Cyloop.
-
- The player finished a Cyloop.
-
- The player is drifting.
-
- The player is boosting whilst drifting.
-
- The player is performing a homing attack.
-
- The player is parrying.
-
- The player is climbing a wall.
-
- The player is idle.
-
- The player is using the skateboard.
-
- The player has used a spring.
-
- The player has Phantom Rush.
An enum containing known world flags.
-
- The player is dead.
-
- The player has taken damage or has been repelled by an enemy's shield.
-
- The player is in an auto run section.
-
- The player is in Cyber Space.
-
- The player has Power Boost.
-
- The player is standing on collision pertaining to the height map.
-
- The player is in battle.
- Home
- Codes
-
Libraries
- Getting started
- Features
-
Usage
- Static reference
- Include reference
- Global
- Sonic Frontiers
- Sonic Origins