@p100-web/core 100.2.1 → 100.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/AdaptivePerformance.d.ts +20 -0
- package/dist/AdaptivePerformance.d.ts.map +1 -0
- package/dist/AdaptivePerformance.js +110 -0
- package/dist/AdaptivePerformance.js.map +1 -0
- package/dist/DevTools.d.ts +4 -0
- package/dist/DevTools.d.ts.map +1 -0
- package/dist/DevTools.js +10 -0
- package/dist/DevTools.js.map +1 -0
- package/dist/GameContext.d.ts +202 -0
- package/dist/GameContext.d.ts.map +1 -0
- package/dist/GameContext.js +698 -0
- package/dist/GameContext.js.map +1 -0
- package/dist/IAudioListener.d.ts +4 -0
- package/dist/IAudioListener.d.ts.map +1 -0
- package/dist/IAudioListener.js +2 -0
- package/dist/IAudioListener.js.map +1 -0
- package/dist/ICameraControls.d.ts +17 -0
- package/dist/ICameraControls.d.ts.map +1 -0
- package/dist/ICameraControls.js +2 -0
- package/dist/ICameraControls.js.map +1 -0
- package/dist/IComponentFactory.d.ts +8 -0
- package/dist/IComponentFactory.d.ts.map +1 -0
- package/dist/IComponentFactory.js +2 -0
- package/dist/IComponentFactory.js.map +1 -0
- package/dist/IDBApp.d.ts +21 -0
- package/dist/IDBApp.d.ts.map +1 -0
- package/dist/IDBApp.js +2 -0
- package/dist/IDBApp.js.map +1 -0
- package/dist/IDBEvent.d.ts +10 -0
- package/dist/IDBEvent.d.ts.map +1 -0
- package/dist/IDBEvent.js +2 -0
- package/dist/IDBEvent.js.map +1 -0
- package/dist/IDBFileUsage.d.ts +9 -0
- package/dist/IDBFileUsage.d.ts.map +1 -0
- package/dist/IDBFileUsage.js +2 -0
- package/dist/IDBFileUsage.js.map +1 -0
- package/dist/IDBItem.d.ts +9 -0
- package/dist/IDBItem.d.ts.map +1 -0
- package/dist/IDBItem.js +2 -0
- package/dist/IDBItem.js.map +1 -0
- package/dist/IDBNode.d.ts +21 -0
- package/dist/IDBNode.d.ts.map +1 -0
- package/dist/IDBNode.js +42 -0
- package/dist/IDBNode.js.map +1 -0
- package/dist/IDBScene.d.ts +7 -0
- package/dist/IDBScene.d.ts.map +1 -0
- package/dist/IDBScene.js +2 -0
- package/dist/IDBScene.js.map +1 -0
- package/dist/IDBVariable.d.ts +10 -0
- package/dist/IDBVariable.d.ts.map +1 -0
- package/dist/IDBVariable.js +2 -0
- package/dist/IDBVariable.js.map +1 -0
- package/dist/IEngine.d.ts +23 -0
- package/dist/IEngine.d.ts.map +1 -0
- package/dist/IEngine.js +2 -0
- package/dist/IEngine.js.map +1 -0
- package/dist/IPMaterial.d.ts +12 -0
- package/dist/IPMaterial.d.ts.map +1 -0
- package/dist/IPMaterial.js +2 -0
- package/dist/IPMaterial.js.map +1 -0
- package/dist/IPNodeRenderer.d.ts +25 -0
- package/dist/IPNodeRenderer.d.ts.map +1 -0
- package/dist/IPNodeRenderer.js +2 -0
- package/dist/IPNodeRenderer.js.map +1 -0
- package/dist/IStats.d.ts +9 -0
- package/dist/IStats.d.ts.map +1 -0
- package/dist/IStats.js +3 -0
- package/dist/IStats.js.map +1 -0
- package/dist/MathTools.d.ts +8 -0
- package/dist/MathTools.d.ts.map +1 -0
- package/dist/MathTools.js +20 -0
- package/dist/MathTools.js.map +1 -0
- package/dist/PCanvas.d.ts +171 -0
- package/dist/PCanvas.d.ts.map +1 -0
- package/dist/PCanvas.js +648 -0
- package/dist/PCanvas.js.map +1 -0
- package/dist/PComponent.d.ts +74 -0
- package/dist/PComponent.d.ts.map +1 -0
- package/dist/PComponent.js +155 -0
- package/dist/PComponent.js.map +1 -0
- package/dist/PEnums.d.ts +116 -0
- package/dist/PEnums.d.ts.map +1 -0
- package/dist/PEnums.js +145 -0
- package/dist/PEnums.js.map +1 -0
- package/dist/PEvent.d.ts +22 -0
- package/dist/PEvent.d.ts.map +1 -0
- package/dist/PEvent.js +38 -0
- package/dist/PEvent.js.map +1 -0
- package/dist/PFileSlot.d.ts +14 -0
- package/dist/PFileSlot.d.ts.map +1 -0
- package/dist/PFileSlot.js +14 -0
- package/dist/PFileSlot.js.map +1 -0
- package/dist/PFileUsage.d.ts +11 -0
- package/dist/PFileUsage.d.ts.map +1 -0
- package/dist/PFileUsage.js +24 -0
- package/dist/PFileUsage.js.map +1 -0
- package/dist/PItem.d.ts +14 -0
- package/dist/PItem.d.ts.map +1 -0
- package/dist/PItem.js +36 -0
- package/dist/PItem.js.map +1 -0
- package/dist/PNode.d.ts +116 -0
- package/dist/PNode.d.ts.map +1 -0
- package/dist/PNode.js +422 -0
- package/dist/PNode.js.map +1 -0
- package/dist/PPayload.d.ts +7 -0
- package/dist/PPayload.d.ts.map +1 -0
- package/dist/PPayload.js +19 -0
- package/dist/PPayload.js.map +1 -0
- package/dist/PScene.d.ts +8 -0
- package/dist/PScene.d.ts.map +1 -0
- package/dist/PScene.js +12 -0
- package/dist/PScene.js.map +1 -0
- package/dist/PTypes.d.ts +50 -0
- package/dist/PTypes.d.ts.map +1 -0
- package/dist/PTypes.js +2 -0
- package/dist/PTypes.js.map +1 -0
- package/dist/PVariable.d.ts +29 -0
- package/dist/PVariable.d.ts.map +1 -0
- package/dist/PVariable.js +52 -0
- package/dist/PVariable.js.map +1 -0
- package/dist/PVector2.d.ts +14 -0
- package/dist/PVector2.d.ts.map +1 -0
- package/dist/PVector2.js +25 -0
- package/dist/PVector2.js.map +1 -0
- package/dist/PVector3.d.ts +19 -0
- package/dist/PVector3.d.ts.map +1 -0
- package/dist/PVector3.js +44 -0
- package/dist/PVector3.js.map +1 -0
- package/dist/animations/AnimationTools.d.ts +3 -0
- package/dist/animations/AnimationTools.d.ts.map +1 -0
- package/dist/animations/AnimationTools.js +12 -0
- package/dist/animations/AnimationTools.js.map +1 -0
- package/dist/animations/IModelAnimation.d.ts +17 -0
- package/dist/animations/IModelAnimation.d.ts.map +1 -0
- package/dist/animations/IModelAnimation.js +2 -0
- package/dist/animations/IModelAnimation.js.map +1 -0
- package/dist/assets/AssetLoader.d.ts +10 -0
- package/dist/assets/AssetLoader.d.ts.map +1 -0
- package/dist/assets/AssetLoader.js +12 -0
- package/dist/assets/AssetLoader.js.map +1 -0
- package/dist/index.d.ts +153 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +107 -0
- package/dist/index.js.map +1 -0
- package/dist/media/IDBFile.d.ts +18 -0
- package/dist/media/IDBFile.d.ts.map +1 -0
- package/dist/media/IDBFile.js +2 -0
- package/dist/media/IDBFile.js.map +1 -0
- package/dist/media/PFile.d.ts +13 -0
- package/dist/media/PFile.d.ts.map +1 -0
- package/dist/media/PFile.js +34 -0
- package/dist/media/PFile.js.map +1 -0
- package/dist/pcomponents/BaseMaterial.d.ts +49 -0
- package/dist/pcomponents/BaseMaterial.d.ts.map +1 -0
- package/dist/pcomponents/BaseMaterial.js +59 -0
- package/dist/pcomponents/BaseMaterial.js.map +1 -0
- package/dist/pcomponents/PAnimator.d.ts +42 -0
- package/dist/pcomponents/PAnimator.d.ts.map +1 -0
- package/dist/pcomponents/PAnimator.js +51 -0
- package/dist/pcomponents/PAnimator.js.map +1 -0
- package/dist/pcomponents/PBackground.d.ts +37 -0
- package/dist/pcomponents/PBackground.d.ts.map +1 -0
- package/dist/pcomponents/PBackground.js +45 -0
- package/dist/pcomponents/PBackground.js.map +1 -0
- package/dist/pcomponents/PBasicMaterial.d.ts +22 -0
- package/dist/pcomponents/PBasicMaterial.d.ts.map +1 -0
- package/dist/pcomponents/PBasicMaterial.js +30 -0
- package/dist/pcomponents/PBasicMaterial.js.map +1 -0
- package/dist/pcomponents/PCallAction.d.ts +24 -0
- package/dist/pcomponents/PCallAction.d.ts.map +1 -0
- package/dist/pcomponents/PCallAction.js +34 -0
- package/dist/pcomponents/PCallAction.js.map +1 -0
- package/dist/pcomponents/PCameraPosition.d.ts +33 -0
- package/dist/pcomponents/PCameraPosition.d.ts.map +1 -0
- package/dist/pcomponents/PCameraPosition.js +83 -0
- package/dist/pcomponents/PCameraPosition.js.map +1 -0
- package/dist/pcomponents/PCameraTarget.d.ts +33 -0
- package/dist/pcomponents/PCameraTarget.d.ts.map +1 -0
- package/dist/pcomponents/PCameraTarget.js +84 -0
- package/dist/pcomponents/PCameraTarget.js.map +1 -0
- package/dist/pcomponents/PCollider.d.ts +40 -0
- package/dist/pcomponents/PCollider.d.ts.map +1 -0
- package/dist/pcomponents/PCollider.js +57 -0
- package/dist/pcomponents/PCollider.js.map +1 -0
- package/dist/pcomponents/PCompare.d.ts +32 -0
- package/dist/pcomponents/PCompare.d.ts.map +1 -0
- package/dist/pcomponents/PCompare.js +73 -0
- package/dist/pcomponents/PCompare.js.map +1 -0
- package/dist/pcomponents/PControllerInput.d.ts +30 -0
- package/dist/pcomponents/PControllerInput.d.ts.map +1 -0
- package/dist/pcomponents/PControllerInput.js +38 -0
- package/dist/pcomponents/PControllerInput.js.map +1 -0
- package/dist/pcomponents/PCubeGeometry.d.ts +18 -0
- package/dist/pcomponents/PCubeGeometry.d.ts.map +1 -0
- package/dist/pcomponents/PCubeGeometry.js +23 -0
- package/dist/pcomponents/PCubeGeometry.js.map +1 -0
- package/dist/pcomponents/PDebug.d.ts +21 -0
- package/dist/pcomponents/PDebug.d.ts.map +1 -0
- package/dist/pcomponents/PDebug.js +30 -0
- package/dist/pcomponents/PDebug.js.map +1 -0
- package/dist/pcomponents/PEnvironment.d.ts +27 -0
- package/dist/pcomponents/PEnvironment.d.ts.map +1 -0
- package/dist/pcomponents/PEnvironment.js +43 -0
- package/dist/pcomponents/PEnvironment.js.map +1 -0
- package/dist/pcomponents/PFadeAnimation.d.ts +31 -0
- package/dist/pcomponents/PFadeAnimation.d.ts.map +1 -0
- package/dist/pcomponents/PFadeAnimation.js +112 -0
- package/dist/pcomponents/PFadeAnimation.js.map +1 -0
- package/dist/pcomponents/PHud.d.ts +12 -0
- package/dist/pcomponents/PHud.d.ts.map +1 -0
- package/dist/pcomponents/PHud.js +12 -0
- package/dist/pcomponents/PHud.js.map +1 -0
- package/dist/pcomponents/PImageCache.d.ts +16 -0
- package/dist/pcomponents/PImageCache.d.ts.map +1 -0
- package/dist/pcomponents/PImageCache.js +30 -0
- package/dist/pcomponents/PImageCache.js.map +1 -0
- package/dist/pcomponents/PImageDetector.d.ts +26 -0
- package/dist/pcomponents/PImageDetector.d.ts.map +1 -0
- package/dist/pcomponents/PImageDetector.js +32 -0
- package/dist/pcomponents/PImageDetector.js.map +1 -0
- package/dist/pcomponents/PInteger.d.ts +41 -0
- package/dist/pcomponents/PInteger.d.ts.map +1 -0
- package/dist/pcomponents/PInteger.js +73 -0
- package/dist/pcomponents/PInteger.js.map +1 -0
- package/dist/pcomponents/PIntegerAnimator.d.ts +37 -0
- package/dist/pcomponents/PIntegerAnimator.d.ts.map +1 -0
- package/dist/pcomponents/PIntegerAnimator.js +104 -0
- package/dist/pcomponents/PIntegerAnimator.js.map +1 -0
- package/dist/pcomponents/PLight.d.ts +15 -0
- package/dist/pcomponents/PLight.d.ts.map +1 -0
- package/dist/pcomponents/PLight.js +19 -0
- package/dist/pcomponents/PLight.js.map +1 -0
- package/dist/pcomponents/PLightDirectional.d.ts +19 -0
- package/dist/pcomponents/PLightDirectional.d.ts.map +1 -0
- package/dist/pcomponents/PLightDirectional.js +25 -0
- package/dist/pcomponents/PLightDirectional.js.map +1 -0
- package/dist/pcomponents/PMaskedMaterial.d.ts +19 -0
- package/dist/pcomponents/PMaskedMaterial.d.ts.map +1 -0
- package/dist/pcomponents/PMaskedMaterial.js +28 -0
- package/dist/pcomponents/PMaskedMaterial.js.map +1 -0
- package/dist/pcomponents/PMaterialModifier.d.ts +38 -0
- package/dist/pcomponents/PMaterialModifier.d.ts.map +1 -0
- package/dist/pcomponents/PMaterialModifier.js +67 -0
- package/dist/pcomponents/PMaterialModifier.js.map +1 -0
- package/dist/pcomponents/PModelAnnotation.d.ts +47 -0
- package/dist/pcomponents/PModelAnnotation.d.ts.map +1 -0
- package/dist/pcomponents/PModelAnnotation.js +118 -0
- package/dist/pcomponents/PModelAnnotation.js.map +1 -0
- package/dist/pcomponents/PModelAnnotations.d.ts +46 -0
- package/dist/pcomponents/PModelAnnotations.d.ts.map +1 -0
- package/dist/pcomponents/PModelAnnotations.js +127 -0
- package/dist/pcomponents/PModelAnnotations.js.map +1 -0
- package/dist/pcomponents/PModelGLTF.d.ts +34 -0
- package/dist/pcomponents/PModelGLTF.d.ts.map +1 -0
- package/dist/pcomponents/PModelGLTF.js +55 -0
- package/dist/pcomponents/PModelGLTF.js.map +1 -0
- package/dist/pcomponents/PModelNode.d.ts +16 -0
- package/dist/pcomponents/PModelNode.d.ts.map +1 -0
- package/dist/pcomponents/PModelNode.js +18 -0
- package/dist/pcomponents/PModelNode.js.map +1 -0
- package/dist/pcomponents/PMoveAnimation.d.ts +27 -0
- package/dist/pcomponents/PMoveAnimation.d.ts.map +1 -0
- package/dist/pcomponents/PMoveAnimation.js +64 -0
- package/dist/pcomponents/PMoveAnimation.js.map +1 -0
- package/dist/pcomponents/PMoveToAnimation.d.ts +26 -0
- package/dist/pcomponents/PMoveToAnimation.d.ts.map +1 -0
- package/dist/pcomponents/PMoveToAnimation.js +80 -0
- package/dist/pcomponents/PMoveToAnimation.js.map +1 -0
- package/dist/pcomponents/PNumberAnimator.d.ts +41 -0
- package/dist/pcomponents/PNumberAnimator.d.ts.map +1 -0
- package/dist/pcomponents/PNumberAnimator.js +102 -0
- package/dist/pcomponents/PNumberAnimator.js.map +1 -0
- package/dist/pcomponents/PPhysicalMaterial.d.ts +28 -0
- package/dist/pcomponents/PPhysicalMaterial.d.ts.map +1 -0
- package/dist/pcomponents/PPhysicalMaterial.js +34 -0
- package/dist/pcomponents/PPhysicalMaterial.js.map +1 -0
- package/dist/pcomponents/PPlaneDetector.d.ts +20 -0
- package/dist/pcomponents/PPlaneDetector.d.ts.map +1 -0
- package/dist/pcomponents/PPlaneDetector.js +24 -0
- package/dist/pcomponents/PPlaneDetector.js.map +1 -0
- package/dist/pcomponents/PPlaneGeometry.d.ts +20 -0
- package/dist/pcomponents/PPlaneGeometry.d.ts.map +1 -0
- package/dist/pcomponents/PPlaneGeometry.js +26 -0
- package/dist/pcomponents/PPlaneGeometry.js.map +1 -0
- package/dist/pcomponents/PProjectRoot.d.ts +42 -0
- package/dist/pcomponents/PProjectRoot.d.ts.map +1 -0
- package/dist/pcomponents/PProjectRoot.js +93 -0
- package/dist/pcomponents/PProjectRoot.js.map +1 -0
- package/dist/pcomponents/PRotateAnimation.d.ts +33 -0
- package/dist/pcomponents/PRotateAnimation.d.ts.map +1 -0
- package/dist/pcomponents/PRotateAnimation.js +80 -0
- package/dist/pcomponents/PRotateAnimation.js.map +1 -0
- package/dist/pcomponents/PScaleAnimation.d.ts +28 -0
- package/dist/pcomponents/PScaleAnimation.d.ts.map +1 -0
- package/dist/pcomponents/PScaleAnimation.js +81 -0
- package/dist/pcomponents/PScaleAnimation.js.map +1 -0
- package/dist/pcomponents/PSceneContainer.d.ts +23 -0
- package/dist/pcomponents/PSceneContainer.d.ts.map +1 -0
- package/dist/pcomponents/PSceneContainer.js +45 -0
- package/dist/pcomponents/PSceneContainer.js.map +1 -0
- package/dist/pcomponents/PSceneRoot.d.ts +16 -0
- package/dist/pcomponents/PSceneRoot.d.ts.map +1 -0
- package/dist/pcomponents/PSceneRoot.js +20 -0
- package/dist/pcomponents/PSceneRoot.js.map +1 -0
- package/dist/pcomponents/PSlider.d.ts +34 -0
- package/dist/pcomponents/PSlider.d.ts.map +1 -0
- package/dist/pcomponents/PSlider.js +38 -0
- package/dist/pcomponents/PSlider.js.map +1 -0
- package/dist/pcomponents/PSound.d.ts +33 -0
- package/dist/pcomponents/PSound.d.ts.map +1 -0
- package/dist/pcomponents/PSound.js +39 -0
- package/dist/pcomponents/PSound.js.map +1 -0
- package/dist/pcomponents/PSphereGeometry.d.ts +19 -0
- package/dist/pcomponents/PSphereGeometry.d.ts.map +1 -0
- package/dist/pcomponents/PSphereGeometry.js +25 -0
- package/dist/pcomponents/PSphereGeometry.js.map +1 -0
- package/dist/pcomponents/PSprite.d.ts +17 -0
- package/dist/pcomponents/PSprite.d.ts.map +1 -0
- package/dist/pcomponents/PSprite.js +21 -0
- package/dist/pcomponents/PSprite.js.map +1 -0
- package/dist/pcomponents/PSpriteSheet.d.ts +28 -0
- package/dist/pcomponents/PSpriteSheet.d.ts.map +1 -0
- package/dist/pcomponents/PSpriteSheet.js +41 -0
- package/dist/pcomponents/PSpriteSheet.js.map +1 -0
- package/dist/pcomponents/PText.d.ts +34 -0
- package/dist/pcomponents/PText.d.ts.map +1 -0
- package/dist/pcomponents/PText.js +43 -0
- package/dist/pcomponents/PText.js.map +1 -0
- package/dist/pcomponents/PTransform.d.ts +23 -0
- package/dist/pcomponents/PTransform.d.ts.map +1 -0
- package/dist/pcomponents/PTransform.js +67 -0
- package/dist/pcomponents/PTransform.js.map +1 -0
- package/dist/pcomponents/PVarList.d.ts +43 -0
- package/dist/pcomponents/PVarList.d.ts.map +1 -0
- package/dist/pcomponents/PVarList.js +87 -0
- package/dist/pcomponents/PVarList.js.map +1 -0
- package/dist/pcomponents/PVideoPlayer.d.ts +36 -0
- package/dist/pcomponents/PVideoPlayer.d.ts.map +1 -0
- package/dist/pcomponents/PVideoPlayer.js +93 -0
- package/dist/pcomponents/PVideoPlayer.js.map +1 -0
- package/dist/pcomponents/PVisibility.d.ts +38 -0
- package/dist/pcomponents/PVisibility.d.ts.map +1 -0
- package/dist/pcomponents/PVisibility.js +68 -0
- package/dist/pcomponents/PVisibility.js.map +1 -0
- package/dist/pcomponents/PXRTools.d.ts +32 -0
- package/dist/pcomponents/PXRTools.d.ts.map +1 -0
- package/dist/pcomponents/PXRTools.js +43 -0
- package/dist/pcomponents/PXRTools.js.map +1 -0
- package/dist/ports/IDBInValue.d.ts +6 -0
- package/dist/ports/IDBInValue.d.ts.map +1 -0
- package/dist/ports/IDBInValue.js +2 -0
- package/dist/ports/IDBInValue.js.map +1 -0
- package/dist/ports/IDBLink.d.ts +17 -0
- package/dist/ports/IDBLink.d.ts.map +1 -0
- package/dist/ports/IDBLink.js +2 -0
- package/dist/ports/IDBLink.js.map +1 -0
- package/dist/ports/IDBPayloadValue.d.ts +5 -0
- package/dist/ports/IDBPayloadValue.d.ts.map +1 -0
- package/dist/ports/IDBPayloadValue.js +2 -0
- package/dist/ports/IDBPayloadValue.js.map +1 -0
- package/dist/ports/IValue.d.ts +10 -0
- package/dist/ports/IValue.d.ts.map +1 -0
- package/dist/ports/IValue.js +2 -0
- package/dist/ports/IValue.js.map +1 -0
- package/dist/ports/PInEventPort.d.ts +16 -0
- package/dist/ports/PInEventPort.d.ts.map +1 -0
- package/dist/ports/PInEventPort.js +24 -0
- package/dist/ports/PInEventPort.js.map +1 -0
- package/dist/ports/PInValue.d.ts +17 -0
- package/dist/ports/PInValue.d.ts.map +1 -0
- package/dist/ports/PInValue.js +31 -0
- package/dist/ports/PInValue.js.map +1 -0
- package/dist/ports/PInValuePort.d.ts +18 -0
- package/dist/ports/PInValuePort.d.ts.map +1 -0
- package/dist/ports/PInValuePort.js +49 -0
- package/dist/ports/PInValuePort.js.map +1 -0
- package/dist/ports/PLink.d.ts +23 -0
- package/dist/ports/PLink.d.ts.map +1 -0
- package/dist/ports/PLink.js +50 -0
- package/dist/ports/PLink.js.map +1 -0
- package/dist/ports/POutEventPort.d.ts +20 -0
- package/dist/ports/POutEventPort.d.ts.map +1 -0
- package/dist/ports/POutEventPort.js +65 -0
- package/dist/ports/POutEventPort.js.map +1 -0
- package/dist/ports/POutValuePort.d.ts +13 -0
- package/dist/ports/POutValuePort.d.ts.map +1 -0
- package/dist/ports/POutValuePort.js +21 -0
- package/dist/ports/POutValuePort.js.map +1 -0
- package/dist/ports/PPayloadValue.d.ts +16 -0
- package/dist/ports/PPayloadValue.d.ts.map +1 -0
- package/dist/ports/PPayloadValue.js +28 -0
- package/dist/ports/PPayloadValue.js.map +1 -0
- package/dist/ports/PPort.d.ts +21 -0
- package/dist/ports/PPort.d.ts.map +1 -0
- package/dist/ports/PPort.js +25 -0
- package/dist/ports/PPort.js.map +1 -0
- package/dist/settings/ICameraSettings.d.ts +16 -0
- package/dist/settings/ICameraSettings.d.ts.map +1 -0
- package/dist/settings/ICameraSettings.js +2 -0
- package/dist/settings/ICameraSettings.js.map +1 -0
- package/dist/settings/IQualitySettings.d.ts +14 -0
- package/dist/settings/IQualitySettings.d.ts.map +1 -0
- package/dist/settings/IQualitySettings.js +2 -0
- package/dist/settings/IQualitySettings.js.map +1 -0
- package/dist/settings/IRenderSetting.d.ts +7 -0
- package/dist/settings/IRenderSetting.d.ts.map +1 -0
- package/dist/settings/IRenderSetting.js +2 -0
- package/dist/settings/IRenderSetting.js.map +1 -0
- package/dist/settings/ISetting.d.ts +4 -0
- package/dist/settings/ISetting.d.ts.map +1 -0
- package/dist/settings/ISetting.js +2 -0
- package/dist/settings/ISetting.js.map +1 -0
- package/dist/settings/IWebSettings.d.ts +6 -0
- package/dist/settings/IWebSettings.d.ts.map +1 -0
- package/dist/settings/IWebSettings.js +2 -0
- package/dist/settings/IWebSettings.js.map +1 -0
- package/dist/settings/Settings_Babylonjs.d.ts +101 -0
- package/dist/settings/Settings_Babylonjs.d.ts.map +1 -0
- package/dist/settings/Settings_Babylonjs.js +85 -0
- package/dist/settings/Settings_Babylonjs.js.map +1 -0
- package/dist/settings/Settings_Base.d.ts +11 -0
- package/dist/settings/Settings_Base.d.ts.map +1 -0
- package/dist/settings/Settings_Base.js +45 -0
- package/dist/settings/Settings_Base.js.map +1 -0
- package/dist/settings/Settings_Threejs.d.ts +106 -0
- package/dist/settings/Settings_Threejs.d.ts.map +1 -0
- package/dist/settings/Settings_Threejs.js +165 -0
- package/dist/settings/Settings_Threejs.js.map +1 -0
- package/package.json +1 -1
package/dist/index.js
ADDED
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
//
|
|
2
|
+
// CONTEXT
|
|
3
|
+
//
|
|
4
|
+
export { default as GameContext, Workers, } from "./GameContext";
|
|
5
|
+
export { default as PCanvas } from "./PCanvas";
|
|
6
|
+
//
|
|
7
|
+
// RENDERING
|
|
8
|
+
//
|
|
9
|
+
export { default as AdaptivePerformance } from "./AdaptivePerformance";
|
|
10
|
+
//
|
|
11
|
+
// NODES
|
|
12
|
+
//
|
|
13
|
+
export { default as PNode } from "./PNode";
|
|
14
|
+
export { default as PItem } from "./PItem";
|
|
15
|
+
export { default as PScene } from "./PScene";
|
|
16
|
+
//
|
|
17
|
+
// ACTIONS
|
|
18
|
+
//
|
|
19
|
+
export { default as PEvent } from "./PEvent";
|
|
20
|
+
export { PVariable } from "./PVariable";
|
|
21
|
+
//
|
|
22
|
+
// MATH
|
|
23
|
+
//
|
|
24
|
+
export { default as MathTools } from "./MathTools";
|
|
25
|
+
export { default as PVector2 } from "./PVector2";
|
|
26
|
+
export { default as PVector3 } from "./PVector3";
|
|
27
|
+
//
|
|
28
|
+
// TOOLS
|
|
29
|
+
//
|
|
30
|
+
export { orNull, orEmpty } from "./DevTools";
|
|
31
|
+
export { default as PComponent } from "./PComponent";
|
|
32
|
+
//
|
|
33
|
+
// ENUMS & TYPES
|
|
34
|
+
//
|
|
35
|
+
export { Platform, PProperties, Language, FileSubType, FileType, DataType, Quality, ObjectType, Coordinates, NodeEvents, Curves, PortTypes, } from "./PEnums";
|
|
36
|
+
//
|
|
37
|
+
// MEDIA & FILES
|
|
38
|
+
//
|
|
39
|
+
export { default as PFile } from "./media/PFile";
|
|
40
|
+
export { default as AssetLoader } from "./assets/AssetLoader";
|
|
41
|
+
export { default as PFileUsage } from "./PFileUsage";
|
|
42
|
+
export { default as PFileSlot } from "./PFileSlot";
|
|
43
|
+
export { default as Settings_Base } from "./settings/Settings_Base";
|
|
44
|
+
export { PostProcessingSystems } from "./settings/Settings_Threejs";
|
|
45
|
+
export { default as Settings_Threejs, } from "./settings/Settings_Threejs";
|
|
46
|
+
export { default as Settings_Babylonjs, } from "./settings/Settings_Babylonjs";
|
|
47
|
+
export { default as PPort } from "./ports/PPort";
|
|
48
|
+
export { default as PInEventPort } from "./ports/PInEventPort";
|
|
49
|
+
export { default as POutEventPort } from "./ports/POutEventPort";
|
|
50
|
+
export { default as PLink } from "./ports/PLink";
|
|
51
|
+
export { default as POutValuePort } from "./ports/POutValuePort";
|
|
52
|
+
export { default as PInValuePort } from "./ports/PInValuePort";
|
|
53
|
+
export { default as PInValue } from "./ports/PInValue";
|
|
54
|
+
export { default as PPayloadValue } from "./ports/PPayloadValue";
|
|
55
|
+
//
|
|
56
|
+
// PCOMPONENTS
|
|
57
|
+
//
|
|
58
|
+
export { default as PTransform } from "./pcomponents/PTransform";
|
|
59
|
+
export { default as BaseMaterial } from "./pcomponents/BaseMaterial";
|
|
60
|
+
export { default as PCollider } from "./pcomponents/PCollider";
|
|
61
|
+
export { default as PSceneRoot } from "./pcomponents/PSceneRoot";
|
|
62
|
+
export { default as PProjectRoot } from "./pcomponents/PProjectRoot";
|
|
63
|
+
export { default as PCallAction } from "./pcomponents/PCallAction";
|
|
64
|
+
export { default as PCompare } from "./pcomponents/PCompare";
|
|
65
|
+
export { default as PBackground } from "./pcomponents/PBackground";
|
|
66
|
+
export { default as PVideoPlayer } from "./pcomponents/PVideoPlayer";
|
|
67
|
+
export { default as PBasicMaterial } from "./pcomponents/PBasicMaterial";
|
|
68
|
+
export { default as PAnimator } from "./pcomponents/PAnimator";
|
|
69
|
+
export { default as PPlaneGeometry } from "./pcomponents/PPlaneGeometry";
|
|
70
|
+
export { default as PVisibility } from "./pcomponents/PVisibility";
|
|
71
|
+
export { default as PPhysicalMaterial } from "./pcomponents/PPhysicalMaterial";
|
|
72
|
+
export { default as PMoveAnimation } from "./pcomponents/PMoveAnimation";
|
|
73
|
+
export { default as PSphereGeometry } from "./pcomponents/PSphereGeometry";
|
|
74
|
+
export { default as PFadeAnimation } from "./pcomponents/PFadeAnimation";
|
|
75
|
+
export { default as PRotateAnimation } from "./pcomponents/PRotateAnimation";
|
|
76
|
+
export { default as PDebug } from "./pcomponents/PDebug";
|
|
77
|
+
export { default as PSceneContainer } from "./pcomponents/PSceneContainer";
|
|
78
|
+
export { default as PVarList } from "./pcomponents/PVarList";
|
|
79
|
+
export { default as PImageCache } from "./pcomponents/PImageCache";
|
|
80
|
+
export { default as PText } from "./pcomponents/PText";
|
|
81
|
+
export { default as PModelGLTF } from "./pcomponents/PModelGLTF";
|
|
82
|
+
export { default as PLight } from "./pcomponents/PLight";
|
|
83
|
+
export { default as PLightDirectional } from "./pcomponents/PLightDirectional";
|
|
84
|
+
export { default as PXRTools } from "./pcomponents/PXRTools";
|
|
85
|
+
export { default as PHud } from "./pcomponents/PHud";
|
|
86
|
+
export { default as PSlider } from "./pcomponents/PSlider";
|
|
87
|
+
export { default as PEnvironment } from "./pcomponents/PEnvironment";
|
|
88
|
+
export { default as PScaleAnimation } from "./pcomponents/PScaleAnimation";
|
|
89
|
+
export { default as PMoveToAnimation } from "./pcomponents/PMoveToAnimation";
|
|
90
|
+
export { default as PSound } from "./pcomponents/PSound";
|
|
91
|
+
export { default as PImageDetector } from "./pcomponents/PImageDetector";
|
|
92
|
+
export { default as PPlaneDetector } from "./pcomponents/PPlaneDetector";
|
|
93
|
+
export { default as PCubeGeometry } from "./pcomponents/PCubeGeometry";
|
|
94
|
+
export { default as PCameraPosition } from "./pcomponents/PCameraPosition";
|
|
95
|
+
export { default as PCameraTarget } from "./pcomponents/PCameraTarget";
|
|
96
|
+
export { default as PSprite } from "./pcomponents/PSprite";
|
|
97
|
+
export { default as PControllerInput } from "./pcomponents/PControllerInput";
|
|
98
|
+
export { default as PMaskedMaterial } from "./pcomponents/PMaskedMaterial";
|
|
99
|
+
export { default as PModelNode } from "./pcomponents/PModelNode";
|
|
100
|
+
export { default as PMaterialModifier } from "./pcomponents/PMaterialModifier";
|
|
101
|
+
export { default as PModelAnnotations } from "./pcomponents/PModelAnnotations";
|
|
102
|
+
export { default as PModelAnnotation } from "./pcomponents/PModelAnnotation";
|
|
103
|
+
export { default as PSpriteSheet } from "./pcomponents/PSpriteSheet";
|
|
104
|
+
export { default as PIntegerAnimator } from "./pcomponents/PIntegerAnimator";
|
|
105
|
+
export { default as PInteger } from "./pcomponents/PInteger";
|
|
106
|
+
export { default as PNumberAnimator } from "./pcomponents/PNumberAnimator";
|
|
107
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,EAAE;AACF,WAAW;AACX,EAAE;AAEF,OAAO,EACL,OAAO,IAAI,WAAW,EAEtB,OAAO,GACR,MAAM,eAAe,CAAC;AAIvB,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,WAAW,CAAC;AAE/C,EAAE;AACF,aAAa;AACb,EAAE;AAEF,OAAO,EAAE,OAAO,IAAI,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAGvE,EAAE;AACF,SAAS;AACT,EAAE;AAEF,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,SAAS,CAAC;AAS3C,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,SAAS,CAAC;AAO3C,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,UAAU,CAAC;AAQ7C,EAAE;AACF,WAAW;AACX,EAAE;AAEF,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,UAAU,CAAC;AAC7C,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAUxC,EAAE;AACF,QAAQ;AACR,EAAE;AAEF,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,aAAa,CAAC;AAEnD,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAiB,MAAM,YAAY,CAAC;AAChE,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAiB,MAAM,YAAY,CAAC;AAEhE,EAAE;AACF,SAAS;AACT,EAAE;AAEF,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,YAAY,CAAC;AAS7C,OAAO,EAAE,OAAO,IAAI,UAAU,EAAoB,MAAM,cAAc,CAAC;AAEvE,EAAE;AACF,iBAAiB;AACjB,EAAE;AAEF,OAAO,EACL,QAAQ,EACR,WAAW,EACX,QAAQ,EACR,WAAW,EACX,QAAQ,EACR,QAAQ,EACR,OAAO,EACP,UAAU,EACV,WAAW,EACX,UAAU,EACV,MAAM,EACN,SAAS,GACV,MAAM,UAAU,CAAC;AAgBlB,EAAE;AACF,iBAAiB;AACjB,EAAE;AAEF,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,eAAe,CAAC;AAIjD,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAG9D,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,cAAc,CAAC;AAErD,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,aAAa,CAAC;AAgBnD,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,0BAA0B,CAAC;AAEpE,OAAO,EAAE,qBAAqB,EAAE,MAAM,6BAA6B,CAAC;AAEpE,OAAO,EACL,OAAO,IAAI,gBAAgB,GAI5B,MAAM,6BAA6B,CAAC;AAErC,OAAO,EACL,OAAO,IAAI,kBAAkB,GAG9B,MAAM,+BAA+B,CAAC;AAUvC,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,eAAe,CAAC;AACjD,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,sBAAsB,CAAC;AAC/D,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,uBAAuB,CAAC;AAEjE,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,eAAe,CAAC;AACjD,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,uBAAuB,CAAC;AACjE,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,sBAAsB,CAAC;AAG/D,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AACvD,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,uBAAuB,CAAC;AAEjE,EAAE;AACF,eAAe;AACf,EAAE;AAEF,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,0BAA0B,CAAC;AAGjE,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,4BAA4B,CAAC;AAGrE,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,yBAAyB,CAAC;AAG/D,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,0BAA0B,CAAC;AAGjE,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,4BAA4B,CAAC;AAGrE,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,2BAA2B,CAAC;AAGnE,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,wBAAwB,CAAC;AAG7D,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,2BAA2B,CAAC;AAGnE,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,4BAA4B,CAAC;AAGrE,OAAO,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,8BAA8B,CAAC;AAGzE,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,yBAAyB,CAAC;AAG/D,OAAO,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,8BAA8B,CAAC;AAGzE,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,2BAA2B,CAAC;AAGnE,OAAO,EAAE,OAAO,IAAI,iBAAiB,EAAE,MAAM,iCAAiC,CAAC;AAG/E,OAAO,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,8BAA8B,CAAC;AAGzE,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,+BAA+B,CAAC;AAG3E,OAAO,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,8BAA8B,CAAC;AAGzE,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,gCAAgC,CAAC;AAG7E,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,sBAAsB,CAAC;AAGzD,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,+BAA+B,CAAC;AAG3E,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,wBAAwB,CAAC;AAG7D,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,2BAA2B,CAAC;AAGnE,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,qBAAqB,CAAC;AAGvD,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,0BAA0B,CAAC;AAGjE,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,sBAAsB,CAAC;AAGzD,OAAO,EAAE,OAAO,IAAI,iBAAiB,EAAE,MAAM,iCAAiC,CAAC;AAG/E,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,wBAAwB,CAAC;AAG7D,OAAO,EAAE,OAAO,IAAI,IAAI,EAAE,MAAM,oBAAoB,CAAC;AAGrD,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,uBAAuB,CAAC;AAG3D,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,4BAA4B,CAAC;AAGrE,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,+BAA+B,CAAC;AAG3E,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,gCAAgC,CAAC;AAG7E,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,sBAAsB,CAAC;AAGzD,OAAO,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,8BAA8B,CAAC;AAGzE,OAAO,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,8BAA8B,CAAC;AAGzE,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,6BAA6B,CAAC;AAGvE,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,+BAA+B,CAAC;AAG3E,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,6BAA6B,CAAC;AAGvE,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,uBAAuB,CAAC;AAG3D,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,gCAAgC,CAAC;AAG7E,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,+BAA+B,CAAC;AAG3E,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,0BAA0B,CAAC;AAGjE,OAAO,EAAE,OAAO,IAAI,iBAAiB,EAAE,MAAM,iCAAiC,CAAC;AAG/E,OAAO,EAAE,OAAO,IAAI,iBAAiB,EAAE,MAAM,iCAAiC,CAAC;AAG/E,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,gCAAgC,CAAC;AAG7E,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,4BAA4B,CAAC;AAGrE,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,gCAAgC,CAAC;AAG7E,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,wBAAwB,CAAC;AAG7D,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,+BAA+B,CAAC"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { FileSubType } from "../PEnums";
|
|
2
|
+
interface IBinary {
|
|
3
|
+
key: string;
|
|
4
|
+
extension: string;
|
|
5
|
+
size: number;
|
|
6
|
+
mime: string;
|
|
7
|
+
metadata?: any;
|
|
8
|
+
}
|
|
9
|
+
interface IDBFile {
|
|
10
|
+
_id?: string;
|
|
11
|
+
_parent: string;
|
|
12
|
+
name: string;
|
|
13
|
+
type: number;
|
|
14
|
+
subType: FileSubType;
|
|
15
|
+
binaries: IBinary[];
|
|
16
|
+
}
|
|
17
|
+
export { type IDBFile, type IBinary };
|
|
18
|
+
//# sourceMappingURL=IDBFile.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IDBFile.d.ts","sourceRoot":"","sources":["../../src/media/IDBFile.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,WAAW,CAAC;AAExC,UAAU,OAAO;IACf,GAAG,EAAE,MAAM,CAAC;IACZ,SAAS,EAAE,MAAM,CAAC;IAClB,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,CAAC,EAAE,GAAG,CAAC;CAChB;AAED,UAAU,OAAO;IACf,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,WAAW,CAAC;IACrB,QAAQ,EAAE,OAAO,EAAE,CAAC;CACrB;AAED,OAAO,EAAE,KAAK,OAAO,EAAE,KAAK,OAAO,EAAE,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IDBFile.js","sourceRoot":"","sources":["../../src/media/IDBFile.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { IBinary, IDBFile } from "./IDBFile";
|
|
2
|
+
export default class PFile {
|
|
3
|
+
_id: string;
|
|
4
|
+
_parent: string;
|
|
5
|
+
name: string;
|
|
6
|
+
type: number;
|
|
7
|
+
subType: number;
|
|
8
|
+
constructor(dbItem: IDBFile);
|
|
9
|
+
protected _url: string | null;
|
|
10
|
+
getUrl(): string | null;
|
|
11
|
+
setBinaries(binaries: IBinary[]): void;
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=PFile.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PFile.d.ts","sourceRoot":"","sources":["../../src/media/PFile.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAE7C,MAAM,CAAC,OAAO,OAAO,KAAK;IACxB,GAAG,EAAE,MAAM,CAAC;IACZ,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,MAAM,CAAC;gBAOJ,MAAM,EAAE,OAAO;IAW3B,SAAS,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI,CAAQ;IACrC,MAAM,IAAI,MAAM,GAAG,IAAI;IAIvB,WAAW,CAAC,QAAQ,EAAE,OAAO,EAAE;CAQhC"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
export default class PFile {
|
|
2
|
+
_id;
|
|
3
|
+
_parent;
|
|
4
|
+
name;
|
|
5
|
+
type;
|
|
6
|
+
subType;
|
|
7
|
+
// Binary
|
|
8
|
+
// extension: string | null = null;
|
|
9
|
+
// size: number = 0;
|
|
10
|
+
// url: string | null = null;
|
|
11
|
+
constructor(dbItem) {
|
|
12
|
+
this._id = dbItem._id;
|
|
13
|
+
this._parent = dbItem._parent;
|
|
14
|
+
this.name = dbItem.name;
|
|
15
|
+
this.type = dbItem.type;
|
|
16
|
+
this.subType = dbItem.subType;
|
|
17
|
+
// Binary data, probably change this later:
|
|
18
|
+
this.setBinaries(dbItem.binaries);
|
|
19
|
+
}
|
|
20
|
+
_url = null;
|
|
21
|
+
getUrl() {
|
|
22
|
+
return this._url;
|
|
23
|
+
}
|
|
24
|
+
setBinaries(binaries) {
|
|
25
|
+
if (binaries.length > 0) {
|
|
26
|
+
const binary = binaries[0];
|
|
27
|
+
this._url = binary.key;
|
|
28
|
+
}
|
|
29
|
+
else {
|
|
30
|
+
this._url = null;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
//# sourceMappingURL=PFile.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PFile.js","sourceRoot":"","sources":["../../src/media/PFile.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,OAAO,OAAO,KAAK;IACxB,GAAG,CAAS;IACZ,OAAO,CAAS;IAChB,IAAI,CAAS;IACb,IAAI,CAAS;IACb,OAAO,CAAS;IAEhB,SAAS;IACT,mCAAmC;IACnC,oBAAoB;IACpB,6BAA6B;IAE7B,YAAY,MAAe;QACzB,IAAI,CAAC,GAAG,GAAG,MAAM,CAAC,GAAI,CAAC;QACvB,IAAI,CAAC,OAAO,GAAG,MAAM,CAAC,OAAO,CAAC;QAC9B,IAAI,CAAC,IAAI,GAAG,MAAM,CAAC,IAAI,CAAC;QACxB,IAAI,CAAC,IAAI,GAAG,MAAM,CAAC,IAAI,CAAC;QACxB,IAAI,CAAC,OAAO,GAAG,MAAM,CAAC,OAAO,CAAC;QAE9B,2CAA2C;QAC3C,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;IACpC,CAAC;IAES,IAAI,GAAkB,IAAI,CAAC;IACrC,MAAM;QACJ,OAAO,IAAI,CAAC,IAAI,CAAC;IACnB,CAAC;IAED,WAAW,CAAC,QAAmB;QAC7B,IAAI,QAAQ,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;YACxB,MAAM,MAAM,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC;YAC3B,IAAI,CAAC,IAAI,GAAG,MAAM,CAAC,GAAG,CAAC;QACzB,CAAC;aAAM,CAAC;YACN,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;QACnB,CAAC;IACH,CAAC;CACF"}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import PComponent, { DBComponent } from "../PComponent";
|
|
2
|
+
import PNode from "../PNode";
|
|
3
|
+
import GameContext from "../GameContext";
|
|
4
|
+
import { IPMaterial } from "../IPMaterial";
|
|
5
|
+
import PFileSlot from "../PFileSlot";
|
|
6
|
+
interface DBBaseMaterial extends DBComponent {
|
|
7
|
+
color: string;
|
|
8
|
+
opacity: number;
|
|
9
|
+
transparent: boolean;
|
|
10
|
+
renderOrder: number;
|
|
11
|
+
inverted: boolean;
|
|
12
|
+
alphaTest: number;
|
|
13
|
+
depthWrite: boolean;
|
|
14
|
+
}
|
|
15
|
+
export { type DBBaseMaterial };
|
|
16
|
+
export default abstract class BaseMaterial extends PComponent implements IPMaterial {
|
|
17
|
+
file_texture: PFileSlot;
|
|
18
|
+
color: string;
|
|
19
|
+
opacity: number;
|
|
20
|
+
transparent: boolean;
|
|
21
|
+
renderOrder: number;
|
|
22
|
+
inverted: boolean;
|
|
23
|
+
alphaTest: number;
|
|
24
|
+
depthWrite: boolean;
|
|
25
|
+
isImageMaterial: boolean;
|
|
26
|
+
isVideoMaterial: boolean;
|
|
27
|
+
constructor(name: string, dbComponent: DBBaseMaterial, node: PNode, context: GameContext);
|
|
28
|
+
abstract getTexture<T>(): T | null;
|
|
29
|
+
abstract getOpacity(): number;
|
|
30
|
+
abstract setOpacity(value: number): void;
|
|
31
|
+
dispose(): void;
|
|
32
|
+
toDB(): {
|
|
33
|
+
color: string;
|
|
34
|
+
inverted: boolean;
|
|
35
|
+
opacity: number;
|
|
36
|
+
transparent: boolean;
|
|
37
|
+
renderOrder: number;
|
|
38
|
+
alphaTest: number;
|
|
39
|
+
depthWrite: boolean;
|
|
40
|
+
pid?: number;
|
|
41
|
+
primitive: string;
|
|
42
|
+
inValues?: import("../ports/IDBInValue").IDBInValue[];
|
|
43
|
+
cname?: string;
|
|
44
|
+
comment?: string;
|
|
45
|
+
platform?: number;
|
|
46
|
+
language?: number;
|
|
47
|
+
};
|
|
48
|
+
}
|
|
49
|
+
//# sourceMappingURL=BaseMaterial.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BaseMaterial.d.ts","sourceRoot":"","sources":["../../src/pcomponents/BaseMaterial.ts"],"names":[],"mappings":"AAAA,OAAO,UAAU,EAAE,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AACxD,OAAO,KAAK,MAAM,UAAU,CAAC;AAC7B,OAAO,WAAW,MAAM,gBAAgB,CAAC;AACzC,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAC3C,OAAO,SAAS,MAAM,cAAc,CAAC;AAErC,UAAU,cAAe,SAAQ,WAAW;IAC1C,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,EAAE,MAAM,CAAC;IAChB,WAAW,EAAE,OAAO,CAAC;IACrB,WAAW,EAAE,MAAM,CAAC;IACpB,QAAQ,EAAE,OAAO,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;IAClB,UAAU,EAAE,OAAO,CAAC;CACrB;AAED,OAAO,EAAE,KAAK,cAAc,EAAE,CAAC;AAE/B,MAAM,CAAC,OAAO,CAAC,QAAQ,OAAO,YAC5B,SAAQ,UACR,YAAW,UAAU;IAErB,YAAY,EAAE,SAAS,CAAC;IAExB,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,EAAE,MAAM,CAAC;IAChB,WAAW,EAAE,OAAO,CAAC;IACrB,WAAW,EAAE,MAAM,CAAC;IACpB,QAAQ,EAAE,OAAO,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;IAClB,UAAU,EAAE,OAAO,CAAC;IAEpB,eAAe,EAAE,OAAO,CAAC;IACzB,eAAe,EAAE,OAAO,CAAC;gBAGvB,IAAI,EAAE,MAAM,EACZ,WAAW,EAAE,cAAc,EAC3B,IAAI,EAAE,KAAK,EACX,OAAO,EAAE,WAAW;IA+BtB,QAAQ,CAAC,UAAU,CAAC,CAAC,KAAK,CAAC,GAAG,IAAI;IAClC,QAAQ,CAAC,UAAU,IAAI,MAAM;IAC7B,QAAQ,CAAC,UAAU,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI;IAMxC,OAAO;IAWP,IAAI;;;;;;;;;;;;;;;;CAYL"}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
import PComponent from "../PComponent";
|
|
2
|
+
export default class BaseMaterial extends PComponent {
|
|
3
|
+
file_texture;
|
|
4
|
+
color;
|
|
5
|
+
opacity;
|
|
6
|
+
transparent;
|
|
7
|
+
renderOrder;
|
|
8
|
+
inverted;
|
|
9
|
+
alphaTest;
|
|
10
|
+
depthWrite;
|
|
11
|
+
isImageMaterial;
|
|
12
|
+
isVideoMaterial;
|
|
13
|
+
constructor(name, dbComponent, node, context) {
|
|
14
|
+
super(dbComponent, name, node, context);
|
|
15
|
+
this.file_texture = this.registerFileSlot(1);
|
|
16
|
+
this.color = dbComponent.color;
|
|
17
|
+
this.opacity = dbComponent.opacity;
|
|
18
|
+
this.transparent = dbComponent.transparent || false;
|
|
19
|
+
this.renderOrder = dbComponent.renderOrder || 0;
|
|
20
|
+
this.inverted = dbComponent.inverted || false;
|
|
21
|
+
this.alphaTest = dbComponent.alphaTest || 0;
|
|
22
|
+
// Save inverted value
|
|
23
|
+
this.depthWrite = dbComponent.depthWrite || false;
|
|
24
|
+
this.isImageMaterial = false;
|
|
25
|
+
this.isVideoMaterial = false;
|
|
26
|
+
// Register as material for PNode
|
|
27
|
+
if (this.valid) {
|
|
28
|
+
if (this.node.material) {
|
|
29
|
+
this.context.error("Node already had material");
|
|
30
|
+
}
|
|
31
|
+
this.node.material = this;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
//
|
|
35
|
+
// PComponent
|
|
36
|
+
//
|
|
37
|
+
dispose() {
|
|
38
|
+
// Release files
|
|
39
|
+
if (this.node.material === this) {
|
|
40
|
+
this.node.material = null;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
//
|
|
44
|
+
// BaseMaterial
|
|
45
|
+
//
|
|
46
|
+
toDB() {
|
|
47
|
+
return {
|
|
48
|
+
...super.toDB(),
|
|
49
|
+
color: this.color,
|
|
50
|
+
inverted: this.inverted,
|
|
51
|
+
opacity: this.opacity,
|
|
52
|
+
transparent: this.transparent,
|
|
53
|
+
renderOrder: this.renderOrder,
|
|
54
|
+
alphaTest: this.alphaTest,
|
|
55
|
+
depthWrite: this.depthWrite,
|
|
56
|
+
};
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
//# sourceMappingURL=BaseMaterial.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BaseMaterial.js","sourceRoot":"","sources":["../../src/pcomponents/BaseMaterial.ts"],"names":[],"mappings":"AAAA,OAAO,UAA2B,MAAM,eAAe,CAAC;AAkBxD,MAAM,CAAC,OAAO,OAAgB,YAC5B,SAAQ,UAAU;IAGlB,YAAY,CAAY;IAExB,KAAK,CAAS;IACd,OAAO,CAAS;IAChB,WAAW,CAAU;IACrB,WAAW,CAAS;IACpB,QAAQ,CAAU;IAClB,SAAS,CAAS;IAClB,UAAU,CAAU;IAEpB,eAAe,CAAU;IACzB,eAAe,CAAU;IAEzB,YACE,IAAY,EACZ,WAA2B,EAC3B,IAAW,EACX,OAAoB;QAEpB,KAAK,CAAC,WAAW,EAAE,IAAI,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC;QAExC,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC,gBAAgB,CAAC,CAAC,CAAC,CAAC;QAE7C,IAAI,CAAC,KAAK,GAAG,WAAW,CAAC,KAAK,CAAC;QAC/B,IAAI,CAAC,OAAO,GAAG,WAAW,CAAC,OAAO,CAAC;QACnC,IAAI,CAAC,WAAW,GAAG,WAAW,CAAC,WAAW,IAAI,KAAK,CAAC;QACpD,IAAI,CAAC,WAAW,GAAG,WAAW,CAAC,WAAW,IAAI,CAAC,CAAC;QAChD,IAAI,CAAC,QAAQ,GAAG,WAAW,CAAC,QAAQ,IAAI,KAAK,CAAC;QAC9C,IAAI,CAAC,SAAS,GAAG,WAAW,CAAC,SAAS,IAAI,CAAC,CAAC;QAC5C,sBAAsB;QACtB,IAAI,CAAC,UAAU,GAAG,WAAW,CAAC,UAAU,IAAI,KAAK,CAAC;QAElD,IAAI,CAAC,eAAe,GAAG,KAAK,CAAC;QAC7B,IAAI,CAAC,eAAe,GAAG,KAAK,CAAC;QAE7B,iCAAiC;QACjC,IAAI,IAAI,CAAC,KAAK,EAAE,CAAC;YACf,IAAI,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE,CAAC;gBACvB,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,2BAA2B,CAAC,CAAC;YAClD,CAAC;YACD,IAAI,CAAC,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;QAC5B,CAAC;IACH,CAAC;IAUD,EAAE;IACF,cAAc;IACd,EAAE;IAEF,OAAO;QACL,gBAAgB;QAChB,IAAI,IAAI,CAAC,IAAI,CAAC,QAAQ,KAAK,IAAI,EAAE,CAAC;YAChC,IAAI,CAAC,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;QAC5B,CAAC;IACH,CAAC;IAED,EAAE;IACF,gBAAgB;IAChB,EAAE;IAEF,IAAI;QACF,OAAO;YACL,GAAG,KAAK,CAAC,IAAI,EAAE;YACf,KAAK,EAAE,IAAI,CAAC,KAAK;YACjB,QAAQ,EAAE,IAAI,CAAC,QAAQ;YACvB,OAAO,EAAE,IAAI,CAAC,OAAO;YACrB,WAAW,EAAE,IAAI,CAAC,WAAW;YAC7B,WAAW,EAAE,IAAI,CAAC,WAAW;YAC7B,SAAS,EAAE,IAAI,CAAC,SAAS;YACzB,UAAU,EAAE,IAAI,CAAC,UAAU;SAC5B,CAAC;IACJ,CAAC;CACF"}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import PComponent, { DBComponent } from "../PComponent";
|
|
2
|
+
import PNode from "../PNode";
|
|
3
|
+
import GameContext from "../GameContext";
|
|
4
|
+
import POutValuePort from "../ports/POutValuePort";
|
|
5
|
+
import PInEventPort, { DBInPort } from "../ports/PInEventPort";
|
|
6
|
+
import POutEventPort, { DBOutPort } from "../ports/POutEventPort";
|
|
7
|
+
interface DBAnimator extends DBComponent {
|
|
8
|
+
clip: string;
|
|
9
|
+
segment: boolean;
|
|
10
|
+
from: number;
|
|
11
|
+
to: number;
|
|
12
|
+
loop: boolean;
|
|
13
|
+
inport_play?: DBInPort;
|
|
14
|
+
inport_stop?: DBInPort;
|
|
15
|
+
outport_onPlay?: DBOutPort;
|
|
16
|
+
outport_onFinished?: DBOutPort;
|
|
17
|
+
outport_onStopped?: DBOutPort;
|
|
18
|
+
outvalue_animation?: DBOutPort;
|
|
19
|
+
}
|
|
20
|
+
export { type DBAnimator };
|
|
21
|
+
export default abstract class PAnimator extends PComponent {
|
|
22
|
+
inport_play: PInEventPort;
|
|
23
|
+
inport_stop: PInEventPort;
|
|
24
|
+
outport_onPlay: POutEventPort;
|
|
25
|
+
outport_onFinished: POutEventPort;
|
|
26
|
+
outport_onStopped: POutEventPort;
|
|
27
|
+
outvalue_animation: POutValuePort;
|
|
28
|
+
clip: string;
|
|
29
|
+
segment: boolean;
|
|
30
|
+
from: number;
|
|
31
|
+
to: number;
|
|
32
|
+
loop: boolean;
|
|
33
|
+
loaded: boolean;
|
|
34
|
+
validAnimation: boolean;
|
|
35
|
+
constructor(dbComponent: DBAnimator, node: PNode, context: GameContext);
|
|
36
|
+
toDB(): DBAnimator;
|
|
37
|
+
getCurrentClip(): string;
|
|
38
|
+
abstract getAnimationClips(): string[];
|
|
39
|
+
protected abstract callback_onPlay(): void;
|
|
40
|
+
protected abstract callback_onStop(): void;
|
|
41
|
+
}
|
|
42
|
+
//# sourceMappingURL=PAnimator.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PAnimator.d.ts","sourceRoot":"","sources":["../../src/pcomponents/PAnimator.ts"],"names":[],"mappings":"AAAA,OAAO,UAAU,EAAE,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AACxD,OAAO,KAAK,MAAM,UAAU,CAAC;AAC7B,OAAO,WAAW,MAAM,gBAAgB,CAAC;AACzC,OAAO,aAAa,MAAM,wBAAwB,CAAC;AAGnD,OAAO,YAAY,EAAE,EAAE,QAAQ,EAAE,MAAM,uBAAuB,CAAC;AAC/D,OAAO,aAAa,EAAE,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAC;AAElE,UAAU,UAAW,SAAQ,WAAW;IACtC,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,OAAO,CAAC;IACjB,IAAI,EAAE,MAAM,CAAC;IACb,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,OAAO,CAAC;IAEd,WAAW,CAAC,EAAE,QAAQ,CAAC;IACvB,WAAW,CAAC,EAAE,QAAQ,CAAC;IACvB,cAAc,CAAC,EAAE,SAAS,CAAC;IAC3B,kBAAkB,CAAC,EAAE,SAAS,CAAC;IAC/B,iBAAiB,CAAC,EAAE,SAAS,CAAC;IAE9B,kBAAkB,CAAC,EAAE,SAAS,CAAC;CAChC;AAED,OAAO,EAAE,KAAK,UAAU,EAAE,CAAC;AAE3B,MAAM,CAAC,OAAO,CAAC,QAAQ,OAAO,SAAU,SAAQ,UAAU;IACxD,WAAW,EAAE,YAAY,CAAC;IAC1B,WAAW,EAAE,YAAY,CAAC;IAC1B,cAAc,EAAE,aAAa,CAAC;IAC9B,kBAAkB,EAAE,aAAa,CAAC;IAClC,iBAAiB,EAAE,aAAa,CAAC;IAEjC,kBAAkB,EAAE,aAAa,CAAC;IAElC,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,OAAO,CAAC;IACjB,IAAI,EAAE,MAAM,CAAC;IACb,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,OAAO,CAAC;IAEd,MAAM,UAAS;IACf,cAAc,UAAS;gBAEX,WAAW,EAAE,UAAU,EAAE,IAAI,EAAE,KAAK,EAAE,OAAO,EAAE,WAAW;IAkDtE,IAAI,IAAI,UAAU;IAoBlB,cAAc;IAId,QAAQ,CAAC,iBAAiB,IAAI,MAAM,EAAE;IAEtC,SAAS,CAAC,QAAQ,CAAC,eAAe,IAAI,IAAI;IAC1C,SAAS,CAAC,QAAQ,CAAC,eAAe,IAAI,IAAI;CAC3C"}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import PComponent from "../PComponent";
|
|
2
|
+
import { DataType } from "../PEnums";
|
|
3
|
+
export default class PAnimator extends PComponent {
|
|
4
|
+
inport_play;
|
|
5
|
+
inport_stop;
|
|
6
|
+
outport_onPlay;
|
|
7
|
+
outport_onFinished;
|
|
8
|
+
outport_onStopped;
|
|
9
|
+
outvalue_animation;
|
|
10
|
+
clip;
|
|
11
|
+
segment;
|
|
12
|
+
from;
|
|
13
|
+
to;
|
|
14
|
+
loop;
|
|
15
|
+
loaded = false;
|
|
16
|
+
validAnimation = false;
|
|
17
|
+
constructor(dbComponent, node, context) {
|
|
18
|
+
super(dbComponent, "Animator", node, context);
|
|
19
|
+
this.inport_play = this.registerInPort(1, "Play", dbComponent.inport_play, this.callback_onPlay);
|
|
20
|
+
this.inport_stop = this.registerInPort(2, "Stop", dbComponent.inport_stop, this.callback_onStop);
|
|
21
|
+
this.outport_onPlay = this.registerOutPort(3, "On Play", dbComponent.outport_onPlay);
|
|
22
|
+
this.outport_onFinished = this.registerOutPort(4, "On Finished", dbComponent.outport_onFinished);
|
|
23
|
+
this.outport_onStopped = this.registerOutPort(5, "On Stopped", dbComponent.outport_onStopped);
|
|
24
|
+
this.outvalue_animation = this.registerOutValuePort(6, "Current Animation", dbComponent.outvalue_animation, DataType.String, this.getCurrentClip);
|
|
25
|
+
this.from = dbComponent.from || 0;
|
|
26
|
+
this.to = dbComponent.to || 0;
|
|
27
|
+
this.loop = dbComponent.loop === true ? true : false;
|
|
28
|
+
this.segment = dbComponent.segment; // || false;
|
|
29
|
+
this.clip = dbComponent.clip; // || "";
|
|
30
|
+
}
|
|
31
|
+
toDB() {
|
|
32
|
+
return {
|
|
33
|
+
...super.toDB(),
|
|
34
|
+
inport_play: this.inport_play.toDB(),
|
|
35
|
+
inport_stop: this.inport_stop.toDB(),
|
|
36
|
+
outport_onPlay: this.outport_onPlay.toDB(),
|
|
37
|
+
outport_onFinished: this.outport_onFinished.toDB(),
|
|
38
|
+
outport_onStopped: this.outport_onStopped.toDB(),
|
|
39
|
+
outvalue_animation: this.outvalue_animation?.toDB(),
|
|
40
|
+
clip: this.clip,
|
|
41
|
+
segment: this.segment,
|
|
42
|
+
from: this.from,
|
|
43
|
+
to: this.to,
|
|
44
|
+
loop: this.loop,
|
|
45
|
+
};
|
|
46
|
+
}
|
|
47
|
+
getCurrentClip() {
|
|
48
|
+
return this.clip;
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
//# sourceMappingURL=PAnimator.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PAnimator.js","sourceRoot":"","sources":["../../src/pcomponents/PAnimator.ts"],"names":[],"mappings":"AAAA,OAAO,UAA2B,MAAM,eAAe,CAAC;AAIxD,OAAO,EAAE,QAAQ,EAAE,MAAM,WAAW,CAAC;AAuBrC,MAAM,CAAC,OAAO,OAAgB,SAAU,SAAQ,UAAU;IACxD,WAAW,CAAe;IAC1B,WAAW,CAAe;IAC1B,cAAc,CAAgB;IAC9B,kBAAkB,CAAgB;IAClC,iBAAiB,CAAgB;IAEjC,kBAAkB,CAAgB;IAElC,IAAI,CAAS;IACb,OAAO,CAAU;IACjB,IAAI,CAAS;IACb,EAAE,CAAS;IACX,IAAI,CAAU;IAEd,MAAM,GAAG,KAAK,CAAC;IACf,cAAc,GAAG,KAAK,CAAC;IAEvB,YAAY,WAAuB,EAAE,IAAW,EAAE,OAAoB;QACpE,KAAK,CAAC,WAAW,EAAE,UAAU,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC;QAE9C,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC,cAAc,CACpC,CAAC,EACD,MAAM,EACN,WAAW,CAAC,WAAW,EACvB,IAAI,CAAC,eAAe,CACrB,CAAC;QAEF,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC,cAAc,CACpC,CAAC,EACD,MAAM,EACN,WAAW,CAAC,WAAW,EACvB,IAAI,CAAC,eAAe,CACrB,CAAC;QAEF,IAAI,CAAC,cAAc,GAAG,IAAI,CAAC,eAAe,CACxC,CAAC,EACD,SAAS,EACT,WAAW,CAAC,cAAc,CAC3B,CAAC;QACF,IAAI,CAAC,kBAAkB,GAAG,IAAI,CAAC,eAAe,CAC5C,CAAC,EACD,aAAa,EACb,WAAW,CAAC,kBAAkB,CAC/B,CAAC;QACF,IAAI,CAAC,iBAAiB,GAAG,IAAI,CAAC,eAAe,CAC3C,CAAC,EACD,YAAY,EACZ,WAAW,CAAC,iBAAiB,CAC9B,CAAC;QAEF,IAAI,CAAC,kBAAkB,GAAG,IAAI,CAAC,oBAAoB,CACjD,CAAC,EACD,mBAAmB,EACnB,WAAW,CAAC,kBAAkB,EAC9B,QAAQ,CAAC,MAAM,EACf,IAAI,CAAC,cAAc,CACpB,CAAC;QAEF,IAAI,CAAC,IAAI,GAAG,WAAW,CAAC,IAAI,IAAI,CAAC,CAAC;QAClC,IAAI,CAAC,EAAE,GAAG,WAAW,CAAC,EAAE,IAAI,CAAC,CAAC;QAE9B,IAAI,CAAC,IAAI,GAAG,WAAW,CAAC,IAAI,KAAK,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,CAAC;QAErD,IAAI,CAAC,OAAO,GAAG,WAAW,CAAC,OAAO,CAAC,CAAC,YAAY;QAChD,IAAI,CAAC,IAAI,GAAG,WAAW,CAAC,IAAI,CAAC,CAAC,SAAS;IACzC,CAAC;IAED,IAAI;QACF,OAAO;YACL,GAAG,KAAK,CAAC,IAAI,EAAE;YAEf,WAAW,EAAE,IAAI,CAAC,WAAW,CAAC,IAAI,EAAE;YACpC,WAAW,EAAE,IAAI,CAAC,WAAW,CAAC,IAAI,EAAE;YACpC,cAAc,EAAE,IAAI,CAAC,cAAc,CAAC,IAAI,EAAE;YAC1C,kBAAkB,EAAE,IAAI,CAAC,kBAAkB,CAAC,IAAI,EAAE;YAClD,iBAAiB,EAAE,IAAI,CAAC,iBAAiB,CAAC,IAAI,EAAE;YAEhD,kBAAkB,EAAE,IAAI,CAAC,kBAAkB,EAAE,IAAI,EAAE;YAEnD,IAAI,EAAE,IAAI,CAAC,IAAI;YACf,OAAO,EAAE,IAAI,CAAC,OAAO;YACrB,IAAI,EAAE,IAAI,CAAC,IAAI;YACf,EAAE,EAAE,IAAI,CAAC,EAAE;YACX,IAAI,EAAE,IAAI,CAAC,IAAI;SAChB,CAAC;IACJ,CAAC;IAED,cAAc;QACZ,OAAO,IAAI,CAAC,IAAI,CAAC;IACnB,CAAC;CAMF"}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import GameContext from "../GameContext";
|
|
2
|
+
import PNode from "../PNode";
|
|
3
|
+
import PComponent, { DBComponent } from "../PComponent";
|
|
4
|
+
import { IPMaterial } from "../IPMaterial";
|
|
5
|
+
import PFileSlot from "../PFileSlot";
|
|
6
|
+
interface DBBackground extends DBComponent {
|
|
7
|
+
file_texture: string | null;
|
|
8
|
+
rotation: number;
|
|
9
|
+
radius: number;
|
|
10
|
+
}
|
|
11
|
+
export type { DBBackground };
|
|
12
|
+
export default abstract class PBackground extends PComponent implements IPMaterial {
|
|
13
|
+
file_texture: PFileSlot;
|
|
14
|
+
rotation: number;
|
|
15
|
+
radius: number;
|
|
16
|
+
isImageMaterial: boolean;
|
|
17
|
+
isVideoMaterial: boolean;
|
|
18
|
+
constructor(dbComponent: DBBackground, node: PNode, context: GameContext);
|
|
19
|
+
toDB(): {
|
|
20
|
+
rotation: number;
|
|
21
|
+
radius: number;
|
|
22
|
+
pid?: number;
|
|
23
|
+
primitive: string;
|
|
24
|
+
inValues?: import("../ports/IDBInValue").IDBInValue[];
|
|
25
|
+
cname?: string;
|
|
26
|
+
comment?: string;
|
|
27
|
+
platform?: number;
|
|
28
|
+
language?: number;
|
|
29
|
+
};
|
|
30
|
+
abstract getTexture<T>(): T | null;
|
|
31
|
+
abstract getOpacity(): number;
|
|
32
|
+
abstract setOpacity(value: number): void;
|
|
33
|
+
dispose(): void;
|
|
34
|
+
protected abstract _dispose(unrender: boolean): void;
|
|
35
|
+
unrender(): void;
|
|
36
|
+
}
|
|
37
|
+
//# sourceMappingURL=PBackground.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PBackground.d.ts","sourceRoot":"","sources":["../../src/pcomponents/PBackground.ts"],"names":[],"mappings":"AAAA,OAAO,WAAW,MAAM,gBAAgB,CAAC;AACzC,OAAO,KAAK,MAAM,UAAU,CAAC;AAC7B,OAAO,UAAU,EAAE,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AACxD,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAC3C,OAAO,SAAS,MAAM,cAAc,CAAC;AAErC,UAAU,YAAa,SAAQ,WAAW;IACxC,YAAY,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;CAChB;AAED,YAAY,EAAE,YAAY,EAAE,CAAC;AAE7B,MAAM,CAAC,OAAO,CAAC,QAAQ,OAAO,WAC5B,SAAQ,UACR,YAAW,UAAU;IAErB,YAAY,EAAE,SAAS,CAAC;IACxB,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;IAEf,eAAe,EAAE,OAAO,CAAC;IACzB,eAAe,EAAE,OAAO,CAAC;gBAEb,WAAW,EAAE,YAAY,EAAE,IAAI,EAAE,KAAK,EAAE,OAAO,EAAE,WAAW;IAsBxE,IAAI;;;;;;;;;;;IAYJ,QAAQ,CAAC,UAAU,CAAC,CAAC,KAAK,CAAC,GAAG,IAAI;IAClC,QAAQ,CAAC,UAAU,IAAI,MAAM;IAC7B,QAAQ,CAAC,UAAU,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI;IAMxC,OAAO;IAOP,SAAS,CAAC,QAAQ,CAAC,QAAQ,CAAC,QAAQ,EAAE,OAAO,GAAG,IAAI;IAEpD,QAAQ;CAGT"}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import PComponent from "../PComponent";
|
|
2
|
+
export default class PBackground extends PComponent {
|
|
3
|
+
file_texture;
|
|
4
|
+
rotation;
|
|
5
|
+
radius;
|
|
6
|
+
isImageMaterial;
|
|
7
|
+
isVideoMaterial;
|
|
8
|
+
constructor(dbComponent, node, context) {
|
|
9
|
+
super(dbComponent, "Background", node, context);
|
|
10
|
+
this.requireTransform = true;
|
|
11
|
+
this.file_texture = this.registerFileSlot(1); //this.context.requestFile(dbComponent.file_texture);
|
|
12
|
+
this.rotation = dbComponent.rotation;
|
|
13
|
+
this.radius = dbComponent.radius || 100;
|
|
14
|
+
// Support image
|
|
15
|
+
this.isImageMaterial = true;
|
|
16
|
+
// Support video
|
|
17
|
+
this.isVideoMaterial = true;
|
|
18
|
+
if (this.valid) {
|
|
19
|
+
if (this.node.material) {
|
|
20
|
+
this.context.error("Node already had material");
|
|
21
|
+
}
|
|
22
|
+
this.node.material = this;
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
toDB() {
|
|
26
|
+
return {
|
|
27
|
+
...super.toDB(),
|
|
28
|
+
rotation: this.rotation,
|
|
29
|
+
radius: this.radius,
|
|
30
|
+
};
|
|
31
|
+
}
|
|
32
|
+
//
|
|
33
|
+
// PComponent
|
|
34
|
+
//
|
|
35
|
+
dispose() {
|
|
36
|
+
// Release files
|
|
37
|
+
if (this.node.material === this) {
|
|
38
|
+
this.node.material = null;
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
unrender() {
|
|
42
|
+
this._dispose(true);
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
//# sourceMappingURL=PBackground.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PBackground.js","sourceRoot":"","sources":["../../src/pcomponents/PBackground.ts"],"names":[],"mappings":"AAEA,OAAO,UAA2B,MAAM,eAAe,CAAC;AAYxD,MAAM,CAAC,OAAO,OAAgB,WAC5B,SAAQ,UAAU;IAGlB,YAAY,CAAY;IACxB,QAAQ,CAAS;IACjB,MAAM,CAAS;IAEf,eAAe,CAAU;IACzB,eAAe,CAAU;IAEzB,YAAY,WAAyB,EAAE,IAAW,EAAE,OAAoB;QACtE,KAAK,CAAC,WAAW,EAAE,YAAY,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC;QAEhD,IAAI,CAAC,gBAAgB,GAAG,IAAI,CAAC;QAE7B,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,qDAAqD;QACnG,IAAI,CAAC,QAAQ,GAAG,WAAW,CAAC,QAAQ,CAAC;QACrC,IAAI,CAAC,MAAM,GAAG,WAAW,CAAC,MAAM,IAAI,GAAG,CAAC;QAExC,gBAAgB;QAChB,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC;QAC5B,gBAAgB;QAChB,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC;QAE5B,IAAI,IAAI,CAAC,KAAK,EAAE,CAAC;YACf,IAAI,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE,CAAC;gBACvB,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,2BAA2B,CAAC,CAAC;YAClD,CAAC;YACD,IAAI,CAAC,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;QAC5B,CAAC;IACH,CAAC;IAED,IAAI;QACF,OAAO;YACL,GAAG,KAAK,CAAC,IAAI,EAAE;YACf,QAAQ,EAAE,IAAI,CAAC,QAAQ;YACvB,MAAM,EAAE,IAAI,CAAC,MAAM;SACpB,CAAC;IACJ,CAAC;IAUD,EAAE;IACF,cAAc;IACd,EAAE;IAEF,OAAO;QACL,gBAAgB;QAChB,IAAI,IAAI,CAAC,IAAI,CAAC,QAAQ,KAAK,IAAI,EAAE,CAAC;YAChC,IAAI,CAAC,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;QAC5B,CAAC;IACH,CAAC;IAID,QAAQ;QACN,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC;IACtB,CAAC;CACF"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import BaseMaterial, { DBBaseMaterial } from "./BaseMaterial";
|
|
2
|
+
import PVector2, { IVector2 } from "../PVector2";
|
|
3
|
+
import GameContext from "../GameContext";
|
|
4
|
+
import PNode from "../PNode";
|
|
5
|
+
import PInEventPort, { DBInPort } from "../ports/PInEventPort";
|
|
6
|
+
interface DBBasicMaterial extends DBBaseMaterial {
|
|
7
|
+
inport_setOpacity?: DBInPort;
|
|
8
|
+
repeat: IVector2;
|
|
9
|
+
offset: IVector2;
|
|
10
|
+
mipMaps: boolean;
|
|
11
|
+
}
|
|
12
|
+
export type { DBBasicMaterial };
|
|
13
|
+
export default abstract class PBasicMaterial extends BaseMaterial {
|
|
14
|
+
inport_setOpacity: PInEventPort;
|
|
15
|
+
mipMaps: boolean;
|
|
16
|
+
repeat: PVector2;
|
|
17
|
+
offset: PVector2;
|
|
18
|
+
constructor(dbComponent: DBBasicMaterial, node: PNode, context: GameContext);
|
|
19
|
+
toDB(): DBBasicMaterial;
|
|
20
|
+
protected abstract callback_setOpacity(payloadValue: string | null): void;
|
|
21
|
+
}
|
|
22
|
+
//# sourceMappingURL=PBasicMaterial.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PBasicMaterial.d.ts","sourceRoot":"","sources":["../../src/pcomponents/PBasicMaterial.ts"],"names":[],"mappings":"AAAA,OAAO,YAAY,EAAE,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAC;AAC9D,OAAO,QAAQ,EAAE,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAC;AACjD,OAAO,WAAW,MAAM,gBAAgB,CAAC;AACzC,OAAO,KAAK,MAAM,UAAU,CAAC;AAG7B,OAAO,YAAY,EAAE,EAAE,QAAQ,EAAE,MAAM,uBAAuB,CAAC;AAE/D,UAAU,eAAgB,SAAQ,cAAc;IAC9C,iBAAiB,CAAC,EAAE,QAAQ,CAAC;IAE7B,MAAM,EAAE,QAAQ,CAAC;IACjB,MAAM,EAAE,QAAQ,CAAC;IACjB,OAAO,EAAE,OAAO,CAAC;CAClB;AAED,YAAY,EAAE,eAAe,EAAE,CAAC;AAEhC,MAAM,CAAC,OAAO,CAAC,QAAQ,OAAO,cAAe,SAAQ,YAAY;IAC/D,iBAAiB,EAAE,YAAY,CAAC;IAEhC,OAAO,EAAE,OAAO,CAAC;IAEjB,MAAM,EAAE,QAAQ,CAAC;IACjB,MAAM,EAAE,QAAQ,CAAC;gBAEL,WAAW,EAAE,eAAe,EAAE,IAAI,EAAE,KAAK,EAAE,OAAO,EAAE,WAAW;IAsB3E,IAAI,IAAI,eAAe;IAUvB,SAAS,CAAC,QAAQ,CAAC,mBAAmB,CAAC,YAAY,EAAE,MAAM,GAAG,IAAI,GAAG,IAAI;CAC1E"}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import BaseMaterial from "./BaseMaterial";
|
|
2
|
+
import PVector2 from "../PVector2";
|
|
3
|
+
import { DataType } from "../PEnums";
|
|
4
|
+
export default class PBasicMaterial extends BaseMaterial {
|
|
5
|
+
inport_setOpacity;
|
|
6
|
+
mipMaps;
|
|
7
|
+
repeat;
|
|
8
|
+
offset;
|
|
9
|
+
constructor(dbComponent, node, context) {
|
|
10
|
+
super("Basic Material", dbComponent, node, context);
|
|
11
|
+
this.inport_setOpacity = this.registerInPort(1, "Set Opacity", dbComponent.inport_setOpacity, this.callback_setOpacity, DataType.Number);
|
|
12
|
+
this.repeat = new PVector2(dbComponent.repeat);
|
|
13
|
+
this.offset = new PVector2(dbComponent.offset || { x: 0, y: 0 });
|
|
14
|
+
this.mipMaps = dbComponent.mipMaps || false;
|
|
15
|
+
// Support image
|
|
16
|
+
this.isImageMaterial = true;
|
|
17
|
+
// Support video
|
|
18
|
+
this.isVideoMaterial = true;
|
|
19
|
+
}
|
|
20
|
+
toDB() {
|
|
21
|
+
return {
|
|
22
|
+
...super.toDB(),
|
|
23
|
+
inport_setOpacity: this.inport_setOpacity?.toDB(),
|
|
24
|
+
repeat: this.repeat,
|
|
25
|
+
offset: this.offset,
|
|
26
|
+
mipMaps: this.mipMaps,
|
|
27
|
+
};
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
//# sourceMappingURL=PBasicMaterial.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PBasicMaterial.js","sourceRoot":"","sources":["../../src/pcomponents/PBasicMaterial.ts"],"names":[],"mappings":"AAAA,OAAO,YAAgC,MAAM,gBAAgB,CAAC;AAC9D,OAAO,QAAsB,MAAM,aAAa,CAAC;AAGjD,OAAO,EAAE,QAAQ,EAAE,MAAM,WAAW,CAAC;AAcrC,MAAM,CAAC,OAAO,OAAgB,cAAe,SAAQ,YAAY;IAC/D,iBAAiB,CAAe;IAEhC,OAAO,CAAU;IAEjB,MAAM,CAAW;IACjB,MAAM,CAAW;IAEjB,YAAY,WAA4B,EAAE,IAAW,EAAE,OAAoB;QACzE,KAAK,CAAC,gBAAgB,EAAE,WAAW,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC;QAEpD,IAAI,CAAC,iBAAiB,GAAG,IAAI,CAAC,cAAc,CAC1C,CAAC,EACD,aAAa,EACb,WAAW,CAAC,iBAAiB,EAC7B,IAAI,CAAC,mBAAmB,EACxB,QAAQ,CAAC,MAAM,CAChB,CAAC;QAEF,IAAI,CAAC,MAAM,GAAG,IAAI,QAAQ,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC;QAC/C,IAAI,CAAC,MAAM,GAAG,IAAI,QAAQ,CAAC,WAAW,CAAC,MAAM,IAAI,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC;QAEjE,IAAI,CAAC,OAAO,GAAG,WAAW,CAAC,OAAO,IAAI,KAAK,CAAC;QAE5C,gBAAgB;QAChB,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC;QAC5B,gBAAgB;QAChB,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC;IAC9B,CAAC;IAED,IAAI;QACF,OAAO;YACL,GAAG,KAAK,CAAC,IAAI,EAAE;YACf,iBAAiB,EAAE,IAAI,CAAC,iBAAiB,EAAE,IAAI,EAAE;YACjD,MAAM,EAAE,IAAI,CAAC,MAAM;YACnB,MAAM,EAAE,IAAI,CAAC,MAAM;YACnB,OAAO,EAAE,IAAI,CAAC,OAAO;SACtB,CAAC;IACJ,CAAC;CAGF"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import PComponent, { DBComponent } from "../PComponent";
|
|
2
|
+
import GameContext from "../GameContext";
|
|
3
|
+
import PNode from "../PNode";
|
|
4
|
+
import PInEventPort, { DBInPort } from "../ports/PInEventPort";
|
|
5
|
+
import POutEventPort, { DBOutPort } from "../ports/POutEventPort";
|
|
6
|
+
import { DataType } from "../PEnums";
|
|
7
|
+
interface DBCallAction extends DBComponent {
|
|
8
|
+
dataType: DataType;
|
|
9
|
+
inport_on?: DBInPort;
|
|
10
|
+
outport_do?: DBOutPort;
|
|
11
|
+
}
|
|
12
|
+
export { type DBCallAction };
|
|
13
|
+
export default class PCallAction extends PComponent {
|
|
14
|
+
dataType: DataType;
|
|
15
|
+
inport_on: PInEventPort;
|
|
16
|
+
outport_do: POutEventPort;
|
|
17
|
+
constructor(dbComponent: DBCallAction, node: PNode, context: GameContext);
|
|
18
|
+
toDB(): DBCallAction;
|
|
19
|
+
callback_onTrigger(payloadValue: string | null): void;
|
|
20
|
+
render(): void;
|
|
21
|
+
unrender(): void;
|
|
22
|
+
editor_onDataTypeChange(field: string, value: DataType): void;
|
|
23
|
+
}
|
|
24
|
+
//# sourceMappingURL=PCallAction.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PCallAction.d.ts","sourceRoot":"","sources":["../../src/pcomponents/PCallAction.ts"],"names":[],"mappings":"AAAA,OAAO,UAAU,EAAE,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AACxD,OAAO,WAAW,MAAM,gBAAgB,CAAC;AACzC,OAAO,KAAK,MAAM,UAAU,CAAC;AAE7B,OAAO,YAAY,EAAE,EAAE,QAAQ,EAAE,MAAM,uBAAuB,CAAC;AAC/D,OAAO,aAAa,EAAE,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAC;AAElE,OAAO,EAAE,QAAQ,EAAE,MAAM,WAAW,CAAC;AAErC,UAAU,YAAa,SAAQ,WAAW;IACxC,QAAQ,EAAE,QAAQ,CAAC;IAEnB,SAAS,CAAC,EAAE,QAAQ,CAAC;IACrB,UAAU,CAAC,EAAE,SAAS,CAAC;CACxB;AAED,OAAO,EAAE,KAAK,YAAY,EAAE,CAAC;AAE7B,MAAM,CAAC,OAAO,OAAO,WAAY,SAAQ,UAAU;IACjD,QAAQ,EAAE,QAAQ,CAAC;IAEnB,SAAS,EAAE,YAAY,CAAC;IACxB,UAAU,EAAE,aAAa,CAAC;gBAEd,WAAW,EAAE,YAAY,EAAE,IAAI,EAAE,KAAK,EAAE,OAAO,EAAE,WAAW;IAqBxE,IAAI,IAAI,YAAY;IASpB,kBAAkB,CAAC,YAAY,EAAE,MAAM,GAAG,IAAI;IAI9C,MAAM,IAAI,IAAI;IAEd,QAAQ,IAAI,IAAI;IAEhB,uBAAuB,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,QAAQ;CAOvD"}
|