playMaker

Author Topic: Get Active State Color [SOLVED]  (Read 1108 times)

HAIRGROW

  • Playmaker Newbie
  • *
  • Posts: 24
Get Active State Color [SOLVED]
« on: October 10, 2018, 01:51:19 PM »
So I'm working on creating a custom action for debugging purposes. And I'm trying to figure out how to get the color of the Active Fsm State. I'm able to get the name of the Fsm and Active State name, but I'm not seeing a direct way to get the color of the active state. I'm working on a VR game and for debugging purposes, I created an action that set's a Unity Text Mesh to the active state name. The part I'm having problems with is getting the color of the active state in PlayMaker. Essentially I would color code all my states in PlayMaker and set the color of the Unity Text Mesh to the active state color. Thanks in advance.
« Last Edit: October 10, 2018, 03:09:54 PM by HAIRGROW »

HAIRGROW

  • Playmaker Newbie
  • *
  • Posts: 24
Re: Get Active State Color [SOLVED]
« Reply #1 on: October 10, 2018, 03:12:38 PM »
Never mind. After much tinkering, I figured out that the colors in the Preferences menu are stored in PlayMakerPrefs. So in my custom action, I created an array of those colors from the Preferences and then set my public color value to the index from that array. It works perfectly.