toRenderingEngineType method

RenderingEngineType toRenderingEngineType()

Implementation

RenderingEngineType toRenderingEngineType() {
  switch (this) {
    case 'OGRE':
      return RenderingEngineType.ogre;
  }
  throw Exception('$this is not known in enum RenderingEngineType');
}