Package apple.scenekit.enums
Class SCNSceneSourceStatus
- java.lang.Object
-
- apple.scenekit.enums.SCNSceneSourceStatus
-
public final class SCNSceneSourceStatus extends java.lang.Object[@enum] SCNSceneSourceStatus Represents a phase of the loading process. Each of these constants (except SCNSceneSourceStatusError) represents a phase of the loading process. "Parsing" means that the document is being deserialized, "validating" that it's being checked for consistency, "processing" that the resulting object is being loaded. New values might be added to this enumeration to make it more detailed; however the values will always be ordered in the same order as the corresponding phases are executed.
-
-
Field Summary
Fields Modifier and Type Field Description static longCompletestatic longErrorstatic longParsingstatic longProcessingstatic longValidating
-
-
-
Field Detail
-
Error
public static final long Error
- See Also:
- Constant Field Values
-
Parsing
public static final long Parsing
- See Also:
- Constant Field Values
-
Validating
public static final long Validating
- See Also:
- Constant Field Values
-
Processing
public static final long Processing
- See Also:
- Constant Field Values
-
Complete
public static final long Complete
- See Also:
- Constant Field Values
-
-