playMaker

Author Topic: Why can't enumerations be displayed  (Read 1874 times)

ChinaUnity

  • Playmaker Newbie
  • *
  • Posts: 16
Why can't enumerations be displayed
« on: March 14, 2022, 11:33:30 AM »
Why can't enumerations be displayed

djaydino

  • Administrator
  • Hero Member
  • *****
  • Posts: 7618
    • jinxtergames
Re: Why can't enumerations be displayed
« Reply #1 on: March 14, 2022, 01:51:47 PM »
Hi.
Have you searched the enum type on the 'Enum Type'

ChinaUnity

  • Playmaker Newbie
  • *
  • Posts: 16
Re: Why can't enumerations be displayed
« Reply #2 on: March 15, 2022, 06:31:32 AM »
It doesn't even show up. Can you help me with what to do

blackant

  • Hero Member
  • *****
  • Posts: 525
  • http://blackantmaster.com
    • blackantmaster.com
Re: Why can't enumerations be displayed
« Reply #3 on: March 15, 2022, 09:08:26 AM »
You first need to know precisely witch Enum you need to use, then find it in the list. But sometimes, Enums are not really Enum...

ChinaUnity

  • Playmaker Newbie
  • *
  • Posts: 16
Re: Why can't enumerations be displayed
« Reply #4 on: March 15, 2022, 02:48:00 PM »
You first need to know precisely witch Enum you need to use, then find it in the list. But sometimes, Enums are not really Enum...
But I don't see enumerations in the list

ch1ky3n

  • Full Member
  • ***
  • Posts: 208
Re: Why can't enumerations be displayed
« Reply #5 on: March 15, 2022, 04:54:29 PM »
If you want to use custom enum just make a C# script and fill this

namespace AwesomeStudio
{
   public enum myAwesomeEnum {Sunday,Monday,Bad Day}
   
}

then under variable enum type, go find AwesomeStudio

there you have it



djaydino

  • Administrator
  • Hero Member
  • *****
  • Posts: 7618
    • jinxtergames
Re: Why can't enumerations be displayed
« Reply #6 on: March 16, 2022, 08:52:12 AM »
Hi.
What Enum are you looking for?

if from unity, probably inside UnityEngine/...