@galacean/effects-plugin-spine 1.5.0-alpha.0 → 1.5.0-alpha.1
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/alipay.js +13301 -0
- package/dist/alipay.js.map +1 -0
- package/dist/alipay.mjs +13182 -0
- package/dist/alipay.mjs.map +1 -0
- package/dist/index.js +2 -2
- package/dist/index.min.js +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +7 -2
package/dist/index.mjs
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Description: Galacean Effects player spine plugin
|
|
4
4
|
* Author: Ant Group CO., Ltd.
|
|
5
5
|
* Contributors: 十弦
|
|
6
|
-
* Version: v1.5.0-alpha.
|
|
6
|
+
* Version: v1.5.0-alpha.1
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
9
|
import { glContext, assertExist, Geometry, Material, math, setMaskMode, createShaderWithMarcos, ShaderType, GLSLVersion, Mesh, PLAYER_OPTIONS_ENV_EDITOR, spec, HitTestType, VFXItem, DestroyOptions, AbstractPlugin, registerPlugin, logger } from '@galacean/effects';
|
|
@@ -13183,7 +13183,7 @@ var SpineLoader = /** @class */ (function (_super) {
|
|
|
13183
13183
|
}(AbstractPlugin));
|
|
13184
13184
|
|
|
13185
13185
|
registerPlugin('spine', SpineLoader, SpineVFXItem);
|
|
13186
|
-
var version = "1.5.0-alpha.
|
|
13186
|
+
var version = "1.5.0-alpha.1";
|
|
13187
13187
|
logger.info('plugin spine version: ' + version);
|
|
13188
13188
|
|
|
13189
13189
|
export { AlphaTimeline, Animation, AnimationState, AnimationStateAdapter, AnimationStateData, AssetManagerBase, AtlasAttachmentLoader, Attachment, AttachmentTimeline, BinaryInput, BlendMode, Bone, BoneData, BoundingBoxAttachment, CURRENT, ClippingAttachment, Color, ConstraintData, CurveTimeline, CurveTimeline1, CurveTimeline2, DebugUtils, DeformTimeline, Downloader, DrawOrderTimeline, Event, EventData, EventQueue, EventTimeline, EventType, FIRST, FakeTexture, HOLD_FIRST, HOLD_MIX, HOLD_SUBSEQUENT, IkConstraint, IkConstraintData, IkConstraintTimeline, Inherit, InheritTimeline, IntSet, Interpolation, MathUtils, MeshAttachment, MixBlend, MixDirection, PathAttachment, PathConstraint, PathConstraintData, PathConstraintMixTimeline, PathConstraintPositionTimeline, PathConstraintSpacingTimeline, Physics, PhysicsConstraintDampingTimeline, PhysicsConstraintGravityTimeline, PhysicsConstraintInertiaTimeline, PhysicsConstraintMassTimeline, PhysicsConstraintMixTimeline, PhysicsConstraintResetTimeline, PhysicsConstraintStrengthTimeline, PhysicsConstraintTimeline, PhysicsConstraintWindTimeline, PointAttachment, Pool, PositionMode, Pow, PowOut, RGB2Timeline, RGBA2Timeline, RGBATimeline, RGBTimeline, RegionAttachment, RotateMode, RotateTimeline, SETUP, SUBSEQUENT, ScaleTimeline, ScaleXTimeline, ScaleYTimeline, SequenceTimeline, ShearTimeline, ShearXTimeline, ShearYTimeline, Skeleton, SkeletonBinary, SkeletonBounds, SkeletonClipping, SkeletonData, SkeletonJson, Skin, SkinEntry, Slot, SlotData, SpacingMode, SpineLoader, SpineVFXItem, StringSet, Texture, TextureAtlas, TextureAtlasPage, TextureAtlasRegion, TextureFilter, TextureRegion, TextureWrap, TimeKeeper, Timeline, TrackEntry, TransformConstraint, TransformConstraintData, TransformConstraintTimeline, TranslateTimeline, TranslateXTimeline, TranslateYTimeline, Triangulator, Utils, Vector2$1 as Vector2, VertexAttachment, WindowedMean, createSkeletonData, getAnimationDuration, getAnimationList, getAtlasFromBuffer, getSkeletonFromBuffer, getSkinList, getSpineVersion, getTextureOptions, version };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@galacean/effects-plugin-spine",
|
|
3
|
-
"version": "1.5.0-alpha.
|
|
3
|
+
"version": "1.5.0-alpha.1",
|
|
4
4
|
"description": "Galacean Effects player spine plugin",
|
|
5
5
|
"module": "./dist/index.mjs",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -14,6 +14,11 @@
|
|
|
14
14
|
"import": "./dist/index.mjs",
|
|
15
15
|
"require": "./dist/index.js",
|
|
16
16
|
"types": "./dist/index.d.ts"
|
|
17
|
+
},
|
|
18
|
+
"./alipay": {
|
|
19
|
+
"import": "./dist/alipay.mjs",
|
|
20
|
+
"require": "./dist/alipay.js",
|
|
21
|
+
"types": "./dist/index.d.ts"
|
|
17
22
|
}
|
|
18
23
|
},
|
|
19
24
|
"contributors": [
|
|
@@ -29,7 +34,7 @@
|
|
|
29
34
|
},
|
|
30
35
|
"devDependencies": {
|
|
31
36
|
"fpsmeter": "^0.3.1",
|
|
32
|
-
"@galacean/effects": "1.5.0-alpha.
|
|
37
|
+
"@galacean/effects": "1.5.0-alpha.1"
|
|
33
38
|
},
|
|
34
39
|
"dependencies": {
|
|
35
40
|
"@esotericsoftware/spine-core": "~4.2.43"
|