mirror of
https://github.com/4ian/GDevelop.git
synced 2025-10-15 10:19:04 +00:00
35 lines
1.1 KiB
C++
35 lines
1.1 KiB
C++
/*
|
|
* GDevelop Core
|
|
* Copyright 2008-2015 Florian Rival (Florian.Rival@gmail.com). All rights reserved.
|
|
* This project is released under the MIT License.
|
|
*/
|
|
#include "AllBuiltinExtensions.h"
|
|
#include "GDCore/Tools/Localization.h"
|
|
|
|
using namespace std;
|
|
namespace gd
|
|
{
|
|
|
|
void GD_CORE_API BuiltinExtensionsImplementer::ImplementsAdvancedExtension(gd::PlatformExtension & extension)
|
|
{
|
|
extension.SetExtensionInformation("BuiltinAdvanced",
|
|
_("Advanced control features"),
|
|
_("Built-in extension providing advanced control features."),
|
|
"Florian Rival",
|
|
"Open source (MIT License)");
|
|
|
|
#if defined(GD_IDE_ONLY)
|
|
extension.AddCondition("Toujours",
|
|
_("Always"),
|
|
_("This condition returns always true (or always false if condition is inverted)."),
|
|
_("Always"),
|
|
_("Other"),
|
|
"res/conditions/toujours24.png",
|
|
"res/conditions/toujours.png")
|
|
.AddCodeOnlyParameter("conditionInverted", "")
|
|
.MarkAsAdvanced();
|
|
#endif
|
|
}
|
|
|
|
}
|