-
Notifications
You must be signed in to change notification settings - Fork 28
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::BlackboardContentinstances.
A struct representation of app::player::BlackboardContent.
-
Gets the string hash pertaining to the name of this
app::player::BlackboardContenttype. -
The string hash pertaining to the name of this
app::player::BlackboardContenttype. -
Code // #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 an instance of app::player::BlackboardContent obtained by the input app::player::Blackboard instance by name.
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.
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.
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