Simplified function name declaration for actions/conditions/expressions

This commit is contained in:
Florian Rival
2015-04-23 21:30:04 +12:00
parent ef2eea8b1c
commit c2dc553571
76 changed files with 1390 additions and 1677 deletions
+5 -9
View File
@@ -36,17 +36,13 @@ public:
GetObjectMetadata("TextEntryObject::TextEntry").SetIncludeFile("TextEntryObject/textentryruntimeobject.js");
GetAllActionsForObject("TextEntryObject::TextEntry")["TextEntryObject::String"].codeExtraInformation
.SetFunctionName("setString").SetAssociatedGetter("getString");
GetAllConditionsForObject("TextEntryObject::TextEntry")["TextEntryObject::String"].codeExtraInformation
.SetFunctionName("getString");
GetAllActionsForObject("TextEntryObject::TextEntry")["TextEntryObject::Activate"].codeExtraInformation
.SetFunctionName("activate");
GetAllConditionsForObject("TextEntryObject::TextEntry")["TextEntryObject::Activated"].codeExtraInformation
.SetFunctionName("isActivated");
GetAllActionsForObject("TextEntryObject::TextEntry")["TextEntryObject::String"].SetFunctionName("setString").SetGetter("getString");
GetAllConditionsForObject("TextEntryObject::TextEntry")["TextEntryObject::String"].SetFunctionName("getString");
GetAllActionsForObject("TextEntryObject::TextEntry")["TextEntryObject::Activate"].SetFunctionName("activate");
GetAllConditionsForObject("TextEntryObject::TextEntry")["TextEntryObject::Activated"].SetFunctionName("isActivated");
GetAllStrExpressionsForObject("TextEntryObject::TextEntry")["String"]
.codeExtraInformation.SetFunctionName("getString");
.SetFunctionName("getString");
GD_COMPLETE_EXTENSION_COMPILATION_INFORMATION();
};