Enums as Properties

philip_atha
edited January 2017 in Photon Bolt
I have just a basic enum resembling:

public enum WheelType { Small, Medium, Large };

I need to pass down as a property, but obviously enums are not supported. What's the best way to translate this into something that can be passed down. Convert to String then read back?

Comments