User contributions
From OxeyeWiki
(Latest | Earliest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)
- 19:11, 23 October 2011 (diff | hist) Main Page (top)
- 23:24, 7 February 2010 (diff | hist) m File Objects
- 22:11, 6 February 2010 (diff | hist) Engine Suggestions
- 22:10, 6 February 2010 (diff | hist) Engine Suggestions
- 19:52, 6 February 2010 (diff | hist) Engine Suggestions
- 17:09, 6 February 2010 (diff | hist) Engine Suggestions
- 17:06, 6 February 2010 (diff | hist) Engine Suggestions
- 17:01, 6 February 2010 (diff | hist) Engine Suggestions
- 16:15, 6 February 2010 (diff | hist) m Engine Suggestions
- 16:15, 6 February 2010 (diff | hist) N Engine Suggestions (Created page with '= Under Evaluation = {| border=2 cellpadding=3 cellspacing=0 style="margin: 0 0 1em 1em; border-collapse: collapse;" |- |style="background:#c7c7e0"| '''Library''' |style="backgro...')
- 16:14, 6 February 2010 (diff | hist) m Template:EngineSuggestion (top)
- 16:00, 6 February 2010 (diff | hist) N Template:EngineSuggestion (Created page with '|{{{1}}} || {{{2}}} || {{{3}}} |-')
- 15:30, 6 February 2010 (diff | hist) Category:Daisymoon (→Daisymoon API)
- 14:01, 29 January 2010 (diff | hist) GetMousePosition (top)
- 02:05, 25 January 2010 (diff | hist) SetScissorClip (top)
- 20:16, 19 January 2010 (diff | hist) N JoystickButtonPressed (Created page with '{{EngineHook| joystickButtonPressed | This hook is called when a joystick button changes state from not pressed to pressed. | {{MethodParam|joystick|A number|This is the joystick...') (top)
- 20:12, 19 January 2010 (diff | hist) N GameInit (Created page with '{{EngineHook| gameInit | This hook is called when the game is started. | {{NoParams}} }} === Example === <pre> local function myGameHasStarted() --initialize stuff! end ...') (top)
- 12:54, 19 January 2010 (diff | hist) N GameClose (Created page with '{{EngineHook| gameClose | This hook is called when the game is closed, either by Alt+f4 (Windows), Cmd+Q (Mac), or by the function daisy.exitGame | {{NoParams}} }} === Exampl...') (top)
- 12:44, 19 January 2010 (diff | hist) N FrameUpdate (Created page with '{{EngineHook| frameUpdate | This hook is called everytime the game needs to be updated. Things that change over time should be performed here. | {{MethodParam|time|A number|This ...') (top)
- 12:41, 19 January 2010 (diff | hist) m Template:EngineHook (top)
- 12:39, 19 January 2010 (diff | hist) N FrameRender (Created page with '{{EngineHook| frameRender | This hook is called everytime the game is rendered. No changes to the game should be made during this call, thus, no time variable is included. | {{No...') (top)
- 12:36, 19 January 2010 (diff | hist) m Template:EngineHook
- 12:34, 19 January 2010 (diff | hist) m Template:EngineHook
- 12:32, 19 January 2010 (diff | hist) Template:EngineHook
- 12:32, 19 January 2010 (diff | hist) m Template:EngineHook
- 12:30, 19 January 2010 (diff | hist) Template:EngineHook
- 12:28, 19 January 2010 (diff | hist) N Template:EngineHook (Created page with '{| border=2 cellpadding=3 cellspacing=0 style="margin: 0 0 1em 1em; border-collapse: collapse;" |- |style="background:#cab6dd; font-size:150%;" colspan="3"|"'''{{{1}}}'''" |- |co...')
- 12:15, 19 January 2010 (diff | hist) N SetMousePosition (Created page with '{{DaisyMethod | daisy.setMousePosition(x,y) | This method sets the mouse position. | {{MethodParam|x|A number|0 is the left edge of the application. Value is in pixels.}} {{Meth...') (top)
- 12:13, 19 January 2010 (diff | hist) N IsMouseButtonPressed (Created page with '{{DaisyMethod | daisy.isMouseButtonPressed(button) | This method returns true if the specified button is pressed down. | {{MethodParam|button|A number|0 being left, 1 being right...') (top)
- 17:20, 18 January 2010 (diff | hist) N IsMac (Created page with '{{DaisyMethod | daisy.isMac() | This method checks if the application is ran on a Mac OS X. | {{NoParams}} | Returns one Boolean, true if Mac OS X, false otherwise. }} === Exampl...') (top)
- 17:18, 18 January 2010 (diff | hist) m KeyCodes (top)
- 17:18, 18 January 2010 (diff | hist) m KeyCodes
- 17:17, 18 January 2010 (diff | hist) N KeyCodes (Created page with '<pre> Key Codes Constant Value Description vbKeyLButton 1 Left mouse button vbKeyRButton 2 Right mouse button vbKeyCancel 3 CANCEL key vbKeyMButton 4 Middle mouse butto...')
- 17:15, 18 January 2010 (diff | hist) m IsKeyPressed (top)
- 17:15, 18 January 2010 (diff | hist) N IsKeyPressed (Created page with '{{DaisyMethod | daisy.isKeyPressed(keyCode) | This method returns true if the specified key is pressed down. | {{MethodParam|keyCode|A number representing a key, see keyCodes...')
- 17:04, 18 January 2010 (diff | hist) N GetUserFolderPath (Created page with '{{DaisyMethod | daisy.getUserFolderPath(pathName) | This method returns the absolute path to the computers "user" path. On Mac OS X this is located in the user library. This meth...') (top)
- 16:58, 18 January 2010 (diff | hist) N GetMousePosition (Created page with '{{DaisyMethod | daisy.getMousePosition() | This method returns the X and Y position of the mouse, relative to the top-left corner of the application's active surface. | {{NoParam...')
- 16:56, 18 January 2010 (diff | hist) N GetJoystickAxises (Created page with '{{DaisyMethod | daisy.getJoystickAxises(joystick, stick) | This method returns the X and Y component of a chosen joystick's specified stick. | {{MethodParam|joystick|A number|The...') (top)
- 16:42, 18 January 2010 (diff | hist) N GetFolderContents (Created page with '{{DaisyMethod | daisy.getFolderContents(folderName [, extensionFilter]) | This method returns the contents of a folder as a lua table. | {{MethodParam|folderName|A string|The nam...') (top)
- 16:32, 18 January 2010 (diff | hist) m ExitGame (top)
- 16:32, 18 January 2010 (diff | hist) N ExitGame (Created page with '{{DaisyMethod | daisy.exitGame() | This method closes the application. | {{NoParamas}} | Doesn't return anything. }} === Example === <pre> daisy.exitGame() </pre>')
- 16:26, 18 January 2010 (diff | hist) PlayOrientedSound (top)
- 13:55, 18 January 2010 (diff | hist) m PlayOrientedSound
- 13:55, 18 January 2010 (diff | hist) StartTrackedSound (top)
- 13:54, 18 January 2010 (diff | hist) N UpdateTrackedSound (Created page with '{{AudioMethod | audio.updateTrackedSound(soundId [, gain [, modulation [, x, y, z, [speedX, speedY, speedZ]]]]) | Updates a sound that has been started by audio.[[startTrackedSou...') (top)
- 13:51, 18 January 2010 (diff | hist) UpdateMusic (→Example) (top)
- 13:50, 18 January 2010 (diff | hist) N UpdateMusic (Created page with '{{AudioMethod | audio.updateMusic(musicFilename , volume) | Updates a music already playing started by audio.playMusic. | {{MethodParam|musicFilename|A string|The name of the...')
- 13:46, 18 January 2010 (diff | hist) PlayMusic (top)
- 13:43, 18 January 2010 (diff | hist) m StopTrackedSound (top)
- 13:42, 18 January 2010 (diff | hist) N StopTrackedSound (Created page with '{{AudioMethod | audio.stopTrackedSound(soundId) | Stops a tracked sound based on the soundId. | {{MethodParam|soundId|A number|The id number returned by daisy.[[startTrackedSound...')
(Latest | Earliest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)