You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
/**
|
|
* @private
|
|
*/
|
|
var TerrainState = {
|
|
FAILED: 0,
|
|
UNLOADED: 1,
|
|
RECEIVING: 2,
|
|
RECEIVED: 3,
|
|
TRANSFORMING: 4,
|
|
TRANSFORMED: 5,
|
|
READY: 6,
|
|
};
|
|
export default Object.freeze(TerrainState);
|