drawWrapper.functions.js 275 B

123456789
  1. /**
  2. * Detect if the effect is a DrawWrapper
  3. * @param effect defines the entity to test
  4. * @returns if the entity is a DrawWrapper
  5. */
  6. export function IsWrapper(effect) {
  7. return effect.getPipelineContext === undefined;
  8. }
  9. //# sourceMappingURL=drawWrapper.functions.js.map