Reply To: What's the best way to create a popup with values from a list?

FlowCanvas Forums Support What's the best way to create a popup with values from a list? Reply To: What's the best way to create a popup with values from a list?

#1127
xelnath
Participant

Thank you, I appreciate the fast response.

I am specifically trying to create a popup in the unity inspector driven by a dynamic list of strings to select a string to be used as an input for the blackboard.

E.g. The flowscript is called ‘spawn and act’

And I have inputs:

String MonsterName
String MonsterAction

Which I want to source from a list of monsters specific to that level:

Public Ilist<string> LevelMonsterList
{
Get {

return ScenePrefabList.Select ( c => c.MonsterUniqueName );
}
}

And I want to map that list (defined on the spawned object that has the blackboard) onto a popup that drives the “MonsterToSpawn” string