-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
New extension: TweenGroup #774
Comments
👋 Thanks for your submission! Unfortunately, all submitted extensions have to meet some minimal quality standard - the extension best practices - and our system has found that your extension does not fully comply 😔. You can find all of those rules on the GDevelop wiki. The following issues have been found by the system concerning the respect of those best practices by your extension:
Please update your original submission post with a new zip file containing your extensions updated to follow those guidelines 🙏 |
1 similar comment
👋 Thanks for your submission! Unfortunately, all submitted extensions have to meet some minimal quality standard - the extension best practices - and our system has found that your extension does not fully comply 😔. You can find all of those rules on the GDevelop wiki. The following issues have been found by the system concerning the respect of those best practices by your extension:
Please update your original submission post with a new zip file containing your extensions updated to follow those guidelines 🙏 |
👋 Thanks for your submission! Unfortunately, all submitted extensions have to meet some minimal quality standard - the extension best practices - and our system has found that your extension does not fully comply 😔. You can find all of those rules on the GDevelop wiki. The following issues have been found by the system concerning the respect of those best practices by your extension:
Please update your original submission post with a new zip file containing your extensions updated to follow those guidelines 🙏 |
Can you help me understand how this extension works compared to using an object group to perform a tween? |
Sure. I may be able to fix all the main complaints above, but this: |
1) I will have to dig deeper to understand how this works.
2) This can already be done by putting the tween action inside a
ForEach(Object) event.
…On Fri, Apr 7, 2023 at 2:10 PM George ***@***.***> wrote:
Sure.
1 - with it, you can chain tweens with a custom delay. So, for example,
you create a group and want that all elements in it do a specific tween
with 1s between each element.
2 - you can do tween to relative positions, like, instead of every element
goes to X = 40, make all elements add 40 to their current X position
—
Reply to this email directly, view it on GitHub
<#774 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ACDX5Q2EMR5IB7X7QH6VWLDXABYCNANCNFSM6AAAAAAUWALKMA>
.
You are receiving this because you commented.Message ID:
***@***.***>
--
Tristan Rhodes
|
Sure, the source code and example are right above. As for the ForEach(object), yes, but suppose you want to do this a lot of times, the events sheet would be full of events. Also, encapsulating them into a Behavior makes it an easy to use component. |
You can't use custom JS freely (that's what the error says). If you can't go over that, you will have to add your authorization in here first: |
Will fix the code and add my authorization. |
Added TweenGroup GDevelopApp#774 extension `gdjsAllowedProperties` and `runtimeSceneAllowedProperties` exceptions
👋 Thanks for your submission! We are kind of confused; Your zip file doesn't seem to contain an extension. Please update your original submission post with a new zip file containing an extension 🙏 |
2 similar comments
👋 Thanks for your submission! We are kind of confused; Your zip file doesn't seem to contain an extension. Please update your original submission post with a new zip file containing an extension 🙏 |
👋 Thanks for your submission! We are kind of confused; Your zip file doesn't seem to contain an extension. Please update your original submission post with a new zip file containing an extension 🙏 |
👋 Thanks for your submission! Unfortunately, all submitted extensions have to meet some minimal quality standard - the extension best practices - and our system has found that your extension does not fully comply 😔. You can find all of those rules on the GDevelop wiki. The following issues have been found by the system concerning the respect of those best practices by your extension:
Please update your original submission post with a new zip file containing your extensions updated to follow those guidelines 🙏 |
Hi @arthuro555! 👋 This submission has passed all required tests, and has been moved to a PR as part of our submission pipeline. You can see the progress of your submission on this page. Community submissions are not reviewed by default, so your extension should be added once we've checked that your submission doesn't contain malicious code without further intervention on your part. If you wish for your extension to be reviewed (and thereby moved to the list of reviewed extensions), please follow the instructions written on the README. Thanks again for your contribution to GDevelop! |
Description
Allows you to create a group of objects with tween behavior, performing tween on all of them.
How to use the extension
You need to create an object with the
TweenGroup
behavior. Then, you need to register some objects in it with theRegister object
action. These objects MUST HAVE thetween
behavior. Then, you just add the wanted tween on the object withTweenGroup
behavior and it will also propagate the same tween to the registered objects.Checklist
What tier of review do you aim for your extension?
Community (Unreviewed)
Example file
Tween Group Example.zip
Extension file
TweenGroup.zip
The text was updated successfully, but these errors were encountered: