mirror of
https://github.com/4ian/GDevelop.git
synced 2025-10-15 10:19:04 +00:00

- This is an AI agent that takes a request and takes actions on a project: it can create scenes, find and create objects, add, remove behaviors, modify them, put instances on the scene, create or modify events, and more to come (layers, setup leaderboards, etc...). - It's still in beta and there is room for improvement on many things, but is already useful for prototyping and learning - beginners notably are able to see what the AI can do and learn the concepts of GDevelop. For intermediate and power users, it's useful to try new things, or get things done while working on something else. - Experiment with it and always make backup of your project before starting - in the future restoration points will be added to go back to a previous state if the result is not good or broken.
27 lines
474 B
CSS
27 lines
474 B
CSS
@keyframes thinking-appear {
|
|
0% {
|
|
opacity: 0;
|
|
transform: translateX(-10px);
|
|
}
|
|
/* Start after the bubble container and when the bubble content is almost finished animating. */
|
|
60% {
|
|
opacity: 0;
|
|
transform: translateX(-10px);
|
|
}
|
|
100% {
|
|
opacity: 1;
|
|
transform: translateX(0px);
|
|
}
|
|
}
|
|
|
|
.thinkingText {
|
|
animation: thinking-appear 1s;
|
|
}
|
|
|
|
.feedbackButtonsContainer {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
gap: 4px;
|
|
margin-top: 4px;
|
|
}
|