Agrarsense
Enumerations
PropCategory.h File Reference
#include "CoreMinimal.h"
Include dependency graph for PropCategory.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Enumerations

enum class  EPropCategory : uint8 { Misc = 0 UMETA(DisplayName = "Misc") , Rock = 1 UMETA(DisplayName = "Rock") , TreeTrunk = 2 UMETA(DisplayName = "TreeTrunk") }
 

Enumeration Type Documentation

◆ EPropCategory

enum class EPropCategory : uint8
strong

Prop category enum (e.g. Rock, TreeTrunk, Stump) which can used for filtering and custom logic.

Enumerator
Misc 
Rock 
TreeTrunk 

Definition at line 14 of file PropCategory.h.

15{
16 Misc = 0 UMETA(DisplayName = "Misc"), // forwarder, tent, power pylon etc. (default)
17 Rock = 1 UMETA(DisplayName = "Rock"), // rocks and cliff
18 TreeTrunk = 2 UMETA(DisplayName = "TreeTrunk") // tree trunks and tree trunk piles
19}