monkey
monkey copied to clipboard
Blitz Research Monkey Source
Mark, Any possibility we could get annotations in the language? http://www.monkey-x.com/Community/posts.php?topic=2344 Edit: Bumped the enter key...
``` #ANDROID_APP_LABEL="Ape's Banana Conquest" ``` leads to the following lines when compiling for GLFW: ``` TRANS monkey compiler V1.80 Parsing... Semanting... Translating... Building... g++ -O3 -DNDEBUG -Wno-deprecated-declarations -Wno-free-nonheap-object -Wno-unused-result -I../glfw/include...
...in the Android target. This makes it much easier for Module authors to hook into the application lifecycle, enabling deeper integration with the iOS platform. A bit of history behind...
I do not know about that "If MOJO_VERSION_X ... Import mojox.audio", so I am unsure what is done there (am only using the free monkey-version). As there is no "MaxChannels"-value...
Added the ability for monkey to handle #LIB in html5 target. Each #LIB will get added in the head as a html script tag. If the #LIB starts with http://...
Hey Mark, The "ANDROID_MAINFEST_ACTIVITY_PROPERTIES" needs to be replicated into the android_ndk target. added gitignore _.build_ added androidmanifest and transcc var ANDROID_MAINFEST_ACTIVITY_PROPERTIES
Transcc currently supports no way to order Imported files.This causes a lot of trouble when interfacing with C and C++ Project which rely on a specific order of imports (and...
The _native_ implementation of the DataBuffer currently offers no way to resize the DataBuffer. Since the _length and the _data fields are private (C++) there is currently no way to...
This patch allows Trans to generate code for a different target host. It is very useful when you just need the C++ source to be compiled on Linux but don't...
Monkey X currently creates a new List Enumerator for every enumaration. When working with many Lists this behavior creates a lot of garbage. It would be nice if the Enumator...