-
Notifications
You must be signed in to change notification settings - Fork 19
Library Rangers Blackboard
Provides access to app::player::Blackboard
from Sonic Frontiers.
A struct representation of app::player::Blackboard
.
-
-
An array of pointers to
app::player::BlackboardContent
instances.
-
An array of pointers to
A struct representation of app::player::BlackboardContent
.
-
-
Gets the string hash pertaining to the name of this
app::player::BlackboardContent
type. -
The string hash pertaining to the name of this
app::player::BlackboardContent
type. -
Code // #lib "Blackboard" #lib "BlackboardStatus" // { var pBlackboardStatus = Blackboard.GetPlayerBlackboardContent<BlackboardStatus.Data>(pBlackboard); // Prints the name hash to the console. Console.WriteLine(((uint)pBlackboardStatus->GetNameHash().DynamicInvoke()).ToString("X")); }
-
Gets the string hash pertaining to the name of this
Gets an instance of app::player::BlackboardContent
obtained by the input app::player::Blackboard
instance by name.
-
in_pBlackboard
- An instance ofapp::player::Blackboard
. -
in_name
- The name of the instance ofapp::player::BlackboardContent
to find.
A pointer to an instance of app::player::BlackboardContent
.
Code
//
#lib "Blackboard"
//
{
var pBlackboard = Blackboard.GetPlayerBlackboard();
var pBlackboardStatus = Blackboard.GetBlackboardContent(pBlackboard, "BlackboardStatus");
}
Gets an instance of app::player::BlackboardContent
obtained by the input app::player::Blackboard
instance.
-
in_pBlackboard
- An instance ofapp::player::Blackboard
.
A pointer to an instance of app::player::BlackboardContent
.
Code
//
#lib "Blackboard"
#lib "BlackboardStatus"
//
{
var pBlackboard = Blackboard.GetPlayerBlackboard();
var pBlackboardStatus = Blackboard.GetBlackboardContent<BlackboardStatus.Data>(pBlackboard);
}
Gets an instance of app::player::Blackboard
obtained by the current player.
A pointer to an instance of app::player::Blackboard
.
Code
//
#lib "Blackboard"
//
{
var pBlackboard = Blackboard.GetPlayerBlackboard();
}
Gets an instance of app::player::BlackboardContent
obtained by the current player by name.
-
in_name
- The name of the instance ofapp::player::BlackboardContent
to find.
A pointer to an instance of app::player::BlackboardContent
.
Code
//
#lib "Blackboard"
//
{
var pBlackboardStatus = Blackboard.GetPlayerBlackboardContent("BlackboardStatus");
}
Gets an instance of app::player::BlackboardContent
obtained by the current player.
A pointer to an instance of app::player::BlackboardContent
.
Code
//
#lib "Blackboard"
#lib "BlackboardStatus"
//
{
var pBlackboardStatus = Blackboard.GetPlayerBlackboardContent<BlackboardStatus.Data>();
}
- Home
- Codes
-
Libraries
- Getting started
- Features
-
Usage
- Static reference
- Include reference
- Global
- Sonic Frontiers
- Sonic Origins