mirror of
https://github.com/4ian/GDevelop.git
synced 2025-10-15 10:19:04 +00:00
48 lines
1.6 KiB
C++
48 lines
1.6 KiB
C++
/*
|
|
* GDevelop Core
|
|
* Copyright 2008-2016 Florian Rival (Florian.Rival@gmail.com). All rights
|
|
* reserved. This project is released under the MIT License.
|
|
*/
|
|
#include "AllBuiltinExtensions.h"
|
|
#include "GDCore/Events/Builtin/AsyncEvent.h"
|
|
#include "GDCore/Tools/Localization.h"
|
|
|
|
using namespace std;
|
|
namespace gd {
|
|
|
|
void GD_CORE_API BuiltinExtensionsImplementer::ImplementsAsyncExtension(
|
|
gd::PlatformExtension &extension) {
|
|
extension
|
|
.SetExtensionInformation(
|
|
"BuiltinAsync",
|
|
_("Asynchronous functions"),
|
|
_("Functions that defer the execution of the events after it."),
|
|
"Arthur Pacaud (arthuro555)",
|
|
"Open source (MIT License)")
|
|
.SetCategory("Advanced");
|
|
extension.AddInstructionOrExpressionGroupMetadata(_("Asynchronous functions"))
|
|
.SetIcon("res/function32.png");
|
|
|
|
extension.AddEvent("Async",
|
|
_("Async event"),
|
|
_("Internal event for asynchronous actions"),
|
|
"",
|
|
"res/eventaddicon.png",
|
|
std::make_shared<gd::AsyncEvent>());
|
|
|
|
extension
|
|
.AddAction(
|
|
"ResolveAsyncEventsFunction",
|
|
_("End asynchronous function"),
|
|
_("Mark an asynchronous function as finished. This will allow the "
|
|
"actions and subevents following it to be run."),
|
|
"Mark asynchronous function as ended",
|
|
"",
|
|
"res/actions/quit24.png",
|
|
"res/actions/quit.png")
|
|
.AddCodeOnlyParameter("eventsFunctionContext", "")
|
|
.SetRelevantForAsynchronousFunctionEventsOnly();
|
|
}
|
|
|
|
} // namespace gd
|