Files
GDevelop/Extensions/PanelSpriteObject/JsExtension.cpp
T
Florian Rival a8559bfbbc Add clang-format to format (C++) source files automatically (#491)
* Update all CMakeLists of extensions to use clang-format
* Run clang-format on all Extensions
* Update GDCore CMakeLists.txt to add clang-format
* Run clang-format on GDCore files
* Update GDJS and GDCpp CMakeLists.txt to add clang-format
* Run clang-format on GDCpp and GDJS files
2018-05-09 15:57:38 -07:00

72 lines
2.3 KiB
C++

/**
GDevelop - Panel Sprite Extension
Copyright (c) 2012-2016 Victor Levasseur (victorlevasseur01@orange.fr)
This project is released under the MIT License.
*/
#if defined(GD_IDE_ONLY)
#include <iostream>
#include "GDCore/Extensions/PlatformExtension.h"
#include "GDCore/Tools/Localization.h"
void DeclarePanelSpriteObjectExtension(gd::PlatformExtension& extension);
/**
* \brief This class declares information about the JS extension.
*/
class PanelSpriteObjectJsExtension : public gd::PlatformExtension {
public:
/**
* Constructor of an extension declares everything the extension contains:
* objects, actions, conditions and expressions.
*/
PanelSpriteObjectJsExtension() {
DeclarePanelSpriteObjectExtension(*this);
GetObjectMetadata("PanelSpriteObject::PanelSprite")
.SetIncludeFile(
"Extensions/PanelSpriteObject/panelspriteruntimeobject.js")
.AddIncludeFile(
"Extensions/PanelSpriteObject/"
"panelspriteruntimeobject-pixi-renderer.js")
.AddIncludeFile(
"Extensions/PanelSpriteObject/"
"panelspriteruntimeobject-cocos-renderer.js");
GetAllActionsForObject(
"PanelSpriteObject::PanelSprite")["PanelSpriteObject::Width"]
.SetFunctionName("setWidth")
.SetGetter("getWidth");
GetAllConditionsForObject(
"PanelSpriteObject::PanelSprite")["PanelSpriteObject::Width"]
.SetFunctionName("getWidth");
GetAllActionsForObject(
"PanelSpriteObject::PanelSprite")["PanelSpriteObject::Height"]
.SetFunctionName("setHeight")
.SetGetter("getHeight");
GetAllConditionsForObject(
"PanelSpriteObject::PanelSprite")["PanelSpriteObject::Height"]
.SetFunctionName("getHeight");
GetAllActionsForObject(
"PanelSpriteObject::PanelSprite")["PanelSpriteObject::Image"]
.SetFunctionName("setTexture");
GD_COMPLETE_EXTENSION_COMPILATION_INFORMATION();
};
};
#if defined(EMSCRIPTEN)
extern "C" gd::PlatformExtension* CreateGDJSPanelSpriteObjectExtension() {
return new PanelSpriteObjectJsExtension;
}
#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 PanelSpriteObjectJsExtension;
}
#endif
#endif