Add existing to tracked

This commit is contained in:
Jay
2026-08-11 09:53:42 -04:00
parent afe07f3055
commit ffd6e3d73c
8531 changed files with 4396230 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
// @ts-check
/**
* Defines how material properties are applied along a path.
*
* @enum {number}
*/
const PathMode = {
/**
* The material is applied to the entire path as a whole.
* @type {number}
* @constant
*/
WHOLE: 0,
/**
* The material is applied in portions based on temporal position information,
* using interval-based material properties.
* @type {number}
* @constant
*/
PORTIONS: 1,
};
Object.freeze(PathMode);
export default PathMode;