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.

13 lines
291 B
JavaScript

import { ConstantProperty } from "../Source/Cesium.js";
function createDynamicProperty(value) {
var property = new ConstantProperty(value);
Object.defineProperties(property, {
isConstant: {
value: false,
},
});
return property;
}
export default createDynamicProperty;