66 questions
-1
votes
1
answer
234
views
Animated text effect with tweenjs
Please help me figure it out. There is a text animation effect on click on the screen, it is written in "tween.js". Does anyone know how to create such an effect on "tween.js"?
...
0
votes
1
answer
182
views
Createjs tweens execute once per window session and never run until page refresh
I'm trying to run code that tweens a stage child at the end of every minigame. I have several minigames with different tweens. The idea is that when you complete some goal with said minigame, a tween ...
2
votes
1
answer
3k
views
How to get Corners of Bounding Box in ThreeJS?
I have created Object3D and Added four cube geometry inside it and calculated the bounding box for Object3D which holds four cube objects and use BoxHelper to see if the bounding box is working it is ...
1
vote
1
answer
726
views
Tween.js not chaining properly
I'm trying to use tween.js to chain some animations, however I find it is not working properly.
var car={position:{x:100}};
var tween1 = new TWEEN.Tween(car.position)
.to({x: 105}, 1000)....
0
votes
1
answer
262
views
easelJS & adobe_animate blur filter not working
I'm trying to implement a blur filter in animateCC2019.
I succeeded in creating the blur... But have trouble animating it.
Here is what I put in animate CC, in the action panel at that time for that ...
-1
votes
1
answer
726
views
THREE JS Morph Different Geometries
I'm using the EdgesGeometry to render my objects. Right now I'm looking for a way to morph Tetrahedron into Octahedron, Octahedron into Box, Box into Sphere and in the reverse sequence. Went through a ...
0
votes
1
answer
83
views
Parse shape movement from createjs tween?
I'm trying to pre-calculate the bounding boxes of objects in a createjs file.
I have a simple recursive loop that loops over the tween.
I'm having trouble understanding how the data is stored.
My ...
0
votes
1
answer
1k
views
ThreeJs/TweenJS add delay between tween with a for loop
currently working on a bin packing problem using Three.JS and Tween.JS I'm actually struggling using animation.
I have a loop where I place a bunch of Plane Geometry stored in a variable in a canvas ...
0
votes
1
answer
551
views
TWEENJS strange yoyo threejs
After one success circle of animation, tweenjs gets me twitching, i wanna create infinity moving animation, from top, to bottom, but i have some bugs in my code
I need help!
http://weblife.su/...
0
votes
1
answer
797
views
Tween.js - Is it possible to tween a variable?
So I have been playing with three.js and tween.js and I am wondering if it is possible to tween a variable?
What I've tried:
1)
tween = new TWEEN.Tween(renderergl.toneMappingExposure).to( "0.001&...
0
votes
1
answer
780
views
Animate Camera and OrbitControls to its default position in Three.js
I have a scene with Camera and OrbitControls in position. And I'm letting users to move around the scene and change camera view and OrbitControls position.
Now I have a reset button which will reset ...
0
votes
2
answers
3k
views
How to use Tween.js to scale a 3d object in Three.js
does anyone know how I could use tween.js library to smoothly scale objects in three.js? Like for instance if I had a 3d cube how could I make it shrink and then have it return back to its normal size ...
1
vote
1
answer
240
views
TweenJs - rotate rectangle on click runs only once
I am trying to create simple animation on "click" event in JavaScript library called TweenJs (part of CreateJs suite), but it seems that animation updates the display only the first time when I click ...
1
vote
1
answer
1k
views
Attempted import error: 'update' is not exported from '@createjs/tweenjs' (imported as 'TWEEN')
I am trying to create an infinite loop for the animation using tween.js but it gives me this error related to TWEEN.update(time), I also tried TWEEN.default.update() but i get this Attempted import ...
3
votes
1
answer
430
views
I would like to understand the use of the "reversed" property of TweenJS
I don't find any valid example for understand the use of "reversed" propertie in TweenJs. Could you send me a bit of code, explaining this issue? Thanks!!