mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-21 09:35:27 -04:00
56 lines
1.8 KiB
C++
56 lines
1.8 KiB
C++
/**
|
|
|
|
GDevelop - Draggable Behavior Extension
|
|
Copyright (c) 2014-2016 Florian Rival (Florian.Rival@gmail.com)
|
|
This project is released under the MIT License.
|
|
*/
|
|
#include "GDCore/Extensions/PlatformExtension.h"
|
|
#include "GDCore/Tools/Localization.h"
|
|
|
|
#include <iostream>
|
|
|
|
void DeclareDraggableBehaviorExtension(gd::PlatformExtension& extension);
|
|
|
|
/**
|
|
* \brief This class declares information about the JS extension.
|
|
*/
|
|
class DraggableBehaviorJsExtension : public gd::PlatformExtension {
|
|
public:
|
|
/**
|
|
* \brief Constructor of an extension declares everything the extension
|
|
* contains: objects, actions, conditions and expressions.
|
|
*/
|
|
DraggableBehaviorJsExtension() {
|
|
DeclareDraggableBehaviorExtension(*this);
|
|
|
|
GetBehaviorMetadata("DraggableBehavior::Draggable")
|
|
.SetIncludeFile(
|
|
"Extensions/DraggableBehavior/draggableruntimebehavior.js");
|
|
GetAllConditionsForBehavior(
|
|
"DraggableBehavior::Draggable")["DraggableBehavior::Dragged"]
|
|
.SetFunctionName("isDragged")
|
|
.SetIncludeFile(
|
|
"Extensions/DraggableBehavior/draggableruntimebehavior.js");
|
|
GetAllConditionsForBehavior(
|
|
"DraggableBehavior::Draggable")["DraggableBehavior::Dropped"]
|
|
.SetFunctionName("wasJustDropped")
|
|
.SetIncludeFile(
|
|
"Extensions/DraggableBehavior/draggableruntimebehavior.js");
|
|
GD_COMPLETE_EXTENSION_COMPILATION_INFORMATION();
|
|
};
|
|
};
|
|
|
|
#if defined(EMSCRIPTEN)
|
|
extern "C" gd::PlatformExtension* CreateGDJSDraggableBehaviorExtension() {
|
|
return new DraggableBehaviorJsExtension;
|
|
}
|
|
#else
|
|
/**
|
|
* Used by GDevelop to create the extension class
|
|
* -- Do not need to be modified. --
|
|
*/
|
|
extern "C" gd::PlatformExtension* GD_EXTENSION_API CreateGDJSExtension() {
|
|
return new DraggableBehaviorJsExtension;
|
|
}
|
|
#endif
|