User contributions
From OxeyeWiki
(Latest | Earliest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)
- 09:16, 14 March 2009 (diff | hist) m SetThreatLevelProgress (Harvest)
- 12:10, 13 March 2009 (diff | hist) N DrawText (Harvest) (Created page with '{{HarvestMethod | harvest.drawText(string, x, y[, alignment[, r, g, b[, a]]]) | Adds a text line to the render queue. These texts are drawn after the game, but before all other G...')
- 12:07, 13 March 2009 (diff | hist) N DrawLine (Harvest) (Created page with '{{HarvestMethod | harvest.drawLine(x1, y1, x2, y2[, r, g, b[, a]]) | Draws a GUI line from (x1, y1) to (x2, y2) with the given color. | {{MethodParam|x1|An integer|The starting x...')
- 10:25, 12 March 2009 (diff | hist) N Category:Harvest (Created page with '== Harvest: Massive Encounter == === Getting Started === * Harvest Modifications * Harvest Library')
- 10:19, 12 March 2009 (diff | hist) N AddCredits (Harvest) (Created page with '{{HarvestMethod | harvest.addCredits(amount) | Modifies the player's credit count by 'amount'. The value can be negative, which means that money will be removed from the player's...')
- 10:16, 12 March 2009 (diff | hist) N Template:HarvestMethod (Created page with '{| border=2 cellpadding=3 cellspacing=0 style="margin: 0 0 1em 1em; border-collapse: collapse;" |- |style="background:#c7c7c7; font-size:150%;" colspan="3"|'''{{{1}}}''' |- |cols...')
- 10:13, 12 March 2009 (diff | hist) N Template:Harvest (Created page with '<div style="font-size: 90%;"> {| border=1 width=140 cellpadding=1 cellspacing=0 style="float: right; margin: 0 0 1em 1em; border: 1px #aaaaaa solid; border-collapse: collapse;" |...')
- 09:54, 11 March 2009 (diff | hist) N Template:Daisy (Created page with '<div style="font-size: 90%;"> {| border=1 width=140 cellpadding=1 cellspacing=0 style="float: right; margin: 0 0 1em 1em; border: 1px #aaaaaa solid; border-collapse: collapse;" |...')
- 14:01, 10 March 2009 (diff | hist) N RenderSpriteStateFreeShape (Created page with '{{VideoMethod | video.renderSpriteStateFreeShape(spriteId, x1, y1, x2, y2, x3, y3, x4, y4[, scale[, angle[, a, r, g, b]]]) | This method renders the sprite state's texture on a i...') (top)
- 13:42, 10 March 2009 (diff | hist) N RenderSpriteStateFay (Created page with '{{VideoMethod | video.renderSpriteStateFay(spriteId, x, y[, scale[, angle[, a, r, g, b]]]) | '''Deprecated''' This is a special render method that was introduced when we made [[B...') (top)
- 13:26, 10 March 2009 (diff | hist) N RenderText (Created page with '{{VideoMethod | video.renderText(text, x, y[, alignment[, font[, a, r, g, b]]]) | Renders a text string on the screen using an optional font. | {{MethodParam|text|A string|The te...') (top)
- 12:28, 9 March 2009 (diff | hist) m ToString (top)
- 09:07, 9 March 2009 (diff | hist) m RenderSpriteState
- 09:07, 9 March 2009 (diff | hist) N RenderSpriteStateFixed (Created page with '{{VideoMethod | video.renderSpriteStateFixed(spriteId, x, y[, a, r, g, b[, clipLeft, clipTop, clipRight, clipBottom]]) | This is a special rendering method that is able to clip t...')
- 09:00, 9 March 2009 (diff | hist) N RenderSpriteState (Created page with '{{VideoMethod | video.renderSpriteState(spriteId, x, y[, scale[, angle[, a, r, g, b]]]) | Renders a sprite at the given screen position. | {{MethodParam|spriteId|An integer|The s...')
- 08:33, 9 March 2009 (diff | hist) N CreateComponent (Created page with '{{GUIMethod | gui.createComponent(componentType[, parent [, id]]) | Creates a new Lunamatic instance of a GUI element. This element will remain in memory even if the Lua ...') (top)
- 23:16, 8 March 2009 (diff | hist) N ToLower (Created page with '{{GUIMethod | WChar:toLower() | Creates a copy of the string in lower-case. | {{NoParams}} | Returns a new WChar object with the same string, but in lower-case. }} === Example ==...') (top)
- 23:14, 8 March 2009 (diff | hist) N ToNumber (Created page with '{{GUIMethod | WChar:toNumber() | Converts the string object to a number, if possible. Currently this number will have up to 2 decimals. In future implementations, there may be wa...') (top)
- 23:13, 8 March 2009 (diff | hist) N ToInteger (Created page with '{{GUIMethod | WChar:toInteger() | Converts the string object to an integer, if possible. | {{NoParams}} | Returns the integer value of the text object, or 0 if it's not possible ...') (top)
- 23:11, 8 March 2009 (diff | hist) N ToString (Created page with '{{GUIMethod | WChar:toString() | Converts the string object to a normal byte string (as good as it gets). | {{NoParam}} | Returns the object's string contents as a single-byte st...')
- 23:09, 8 March 2009 (diff | hist) N Sub (Created page with '{{GUIMethod | WChar:sub(start[, end]) | This method will create a substring of the text object. There are several ways of using the method: # One parameter bigger than 0. This w...') (top)
- 22:55, 8 March 2009 (diff | hist) N LessThan (Created page with '{{GUIMethod | WChar:lessThan(other) | Compares this string object with another string object and returns true if this is "less" than the other. The method uses simple byte value ...') (top)
- 22:51, 8 March 2009 (diff | hist) N Length (Created page with '{{GUIMethod | WChar:length() | Fetches the length of the string object, counted in characters. | {{NoParams}} | Returns the length of the string object. }} === Example === <pre> ...') (top)
- 22:49, 8 March 2009 (diff | hist) N Find (Created page with '{{GUIMethod | WChar:find(value[, startPosition]) | Looks for the first occurrence of 'value' in the string object. | {{MethodParam|value|A WChar|The string value to look for, cas...') (top)
- 22:41, 8 March 2009 (diff | hist) N Equals (Created page with '{{GUIMethod | WChar:equals(other) | This method checks if this string object is identical to another WChar string object. | {{MethodParam|other|A WChar|The other WChar object to ...') (top)
- 22:36, 8 March 2009 (diff | hist) N Append (Created page with '{{GUIMethod | WChar:append(value, ...) | Appends data to the string. | {{MethodParam|value|An integer, a number, a string or another WChar object|The data to append. The paramete...') (top)
- 13:15, 8 March 2009 (diff | hist) Projects Using Daisymoon (→Jet Engine Nights)
- 13:14, 8 March 2009 (diff | hist) Template:GameUsingDaisymoon (top)
- 13:04, 8 March 2009 (diff | hist) Projects Using Daisymoon (→Agatha Ragata)
- 13:03, 8 March 2009 (diff | hist) Nm Template:Eq (Created page with '=') (top)
- 12:59, 8 March 2009 (diff | hist) m Template:GameUsingDaisymoon
- 12:58, 8 March 2009 (diff | hist) m Template:GameUsingDaisymoon
- 12:56, 8 March 2009 (diff | hist) m Template:GameUsingDaisymoon
- 12:55, 8 March 2009 (diff | hist) m Template:GameUsingDaisymoon
- 12:54, 8 March 2009 (diff | hist) Nm Template:! (Created page with '|') (top)
- 12:47, 8 March 2009 (diff | hist) m Template:GameUsingDaisymoon (fdg)
- 12:44, 8 March 2009 (diff | hist) m Template:GameUsingDaisymoon (dfgdfg)
- 12:42, 8 March 2009 (diff | hist) m Template:GameUsingDaisymoon (asdas)
- 12:39, 8 March 2009 (diff | hist) m Template:GameUsingDaisymoon (sdfdsf)
- 12:39, 8 March 2009 (diff | hist) m Template:GameUsingDaisymoon (testing)
- 12:14, 8 March 2009 (diff | hist) Projects Using Daisymoon (Added (redundant) game titles to get TOC)
- 19:34, 7 March 2009 (diff | hist) Category:Daisymoon (→Getting Started)
- 19:31, 7 March 2009 (diff | hist) Projects Using Daisymoon (links)
- 11:01, 7 March 2009 (diff | hist) N Lunamatic (Created page with 'Lunamatic is a C++ to Lua binding class which allows the Lua script to add methods and variables that can be accessed from within the engine. This is used for objects that requir...') (top)
- 10:58, 7 March 2009 (diff | hist) m Lunar (Forgot category) (top)
- 10:57, 7 March 2009 (diff | hist) N Lunar (Created page with 'Lunar is a Lua to C++ binding class. It is used in the engine when Lua needs to access objects within engine, but there is no need for Lua-methods on the object. In other words, ...')
- 10:55, 7 March 2009 (diff | hist) m WChar (top)
- 13:37, 6 March 2009 (diff | hist) N CreateDevice (Created page with '{{NetworkMethod | net.createDevice(isPrimitive) | Creates a new network device which can be used to connect with or host games. There are currently two types of network devi...') (top)
- 13:22, 6 March 2009 (diff | hist) N Template:NetworkMethod (Created page with '{| border=2 cellpadding=3 cellspacing=0 style="margin: 0 0 1em 1em; border-collapse: collapse;" |- |style="background:#e0c7c7; font-size:150%;" colspan="3"|'''{{{1}}}''' |- |cols...') (top)
- 13:17, 6 March 2009 (diff | hist) m Template:Network (Made the header pinkish)
(Latest | Earliest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)