Search found 2 matches

by vsd
Thu Jan 09, 2025 9:02 am
Forum: General
Topic: made a mistake when applying the library tween to all objects [SOLVED]
Replies: 2
Views: 252

Re: made a mistake when applying the library tween to all objects

You have a typo in your love.update. Notice the casing: -- "object" is all lowercase for i,object in ipairs(AllObject) do -- ...inside the loop, when creating a tween, you've written "Object" instead object.Motion = tween.new(0.5, Object, {ScaleX = 1.5, ScaleY = 1.5}, 'outBounce...
by vsd
Wed Jan 08, 2025 9:13 am
Forum: General
Topic: made a mistake when applying the library tween to all objects [SOLVED]
Replies: 2
Views: 252

made a mistake when applying the library tween to all objects [SOLVED]

Hi, I'm new to using love2d, I made this project to practice understanding how love2d works. The project I made this time involves a tween library that is used to resize the selected object by touching the collision between the object and the mouse. I'm still new to the library and need some documen...