GameStatList
v4.0
Variables
Forcing posts to Blackboard
// If true, objects will post to blackboard even if they are individual
// set to not post
public bool forcePostToBlackboard = false;
// If true, when objects post, they will be forced to notify followers of the
// blackboard
public bool forceNotifyOnPost = false;
// Example
public void YourActorStartActions()
{
// Ensure the GameStatList stats and GameStatList skills post to blackboard
stats.forcePostToBlackboard = true;
stats.forceNotifyOnPost = true;
skills.forcePostToBlackboard = true;
skills.forceNotifyOnPost = true;
// Other Start Actions
}Last updated