User contributions
From OxeyeWiki
(Latest | Earliest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)
- 10:19, 8 February 2010 (diff | hist) File Objects (→Compressed on Disk (z)) (top)
- 18:55, 7 February 2010 (diff | hist) N ReadWideString (Created page with '{{FileMethod| file:readWideString() | Reads a WChar string from the file. | {{NoParams}} | Returns a WChar object if the file is ok. }} === Example === <pre> local value = fil...') (top)
- 18:55, 7 February 2010 (diff | hist) N ReadString (Created page with '{{FileMethod| file:readString() | Reads a string from the file. | {{NoParams}} | Returns a string if the file is ok. }} === Example === <pre> local value = file:readString() <...') (top)
- 18:54, 7 February 2010 (diff | hist) N ReadInt (Created page with '{{FileMethod| file:readInt() | Reads an integer from the file. | {{NoParams}} | Returns an integer if the file is ok. }} === Example === <pre> local value = file:readInt() </p...') (top)
- 18:54, 7 February 2010 (diff | hist) N ReadFloat (Created page with '{{FileMethod| file:readFloat() | Reads a floating point value from the file. | {{NoParams}} | Returns a number if the file is ok. }} === Example === <pre> local value = file:r...') (top)
- 18:53, 7 February 2010 (diff | hist) N ReadByte (Created page with '{{FileMethod| file:readByte() | Reads a byte from the file. | {{NoParams}} | Returns a clamped integer (0 to 255) if the file is ok. }} === Example === <pre> local value = fil...') (top)
- 18:52, 7 February 2010 (diff | hist) N ReadBoolean (Created page with '{{FileMethod| file:readBoolean() | Reads a boolean from the file. | {{NoParams}} | Returns a boolean if the file is ok. }} === Example === <pre> local value = file:readBoolean...') (top)
- 18:50, 7 February 2010 (diff | hist) N WriteWideString (Created page with '{{FileMethod| file:writeWideString(value) | Writes a WChar string to the file. | {{MethodParam|value|A WChar object|The value to be written.}} | Returns nothing. }} === Example =...') (top)
- 18:49, 7 February 2010 (diff | hist) N WriteString (Created page with '{{FileMethod| file:writeString(value) | Writes a string to the file. | {{MethodParam|value|A string|The value to be written.}} | Returns nothing. }} === Example === <pre> file...') (top)
- 18:49, 7 February 2010 (diff | hist) m WriteInt (top)
- 18:49, 7 February 2010 (diff | hist) N WriteInt (Created page with '{{FileMethod| file:writeInte(value) | Writes an integer to the file. | {{MethodParam|value|An integer|The value to be written.}} | Returns nothing. }} === Example === <pre> fi...')
- 18:48, 7 February 2010 (diff | hist) N WriteFloat (Created page with '{{FileMethod| file:writeFloat(value) | Writes a floating point value to the file. | {{MethodParam|value|A number|The value to be written.}} | Returns nothing. }} === Example === ...') (top)
- 18:47, 7 February 2010 (diff | hist) m WriteByte (top)
- 18:47, 7 February 2010 (diff | hist) N WriteByte (Created page with '{{FileMethod| file:writeBoolean(value) | Writes a byte value (0 to 255) to the file. | {{MethodParam|value|An integer|The value to be written. Will be clamped to 0..255.}} | Retu...')
- 18:46, 7 February 2010 (diff | hist) N WriteBoolean (Created page with '{{FileMethod| file:writeBoolean(value) | Writes a boolean value to the file. | {{MethodParam|value|A boolean|The value to be written.}} | Returns nothing. }} === Example === <pre...') (top)
- 18:45, 7 February 2010 (diff | hist) N Seek (File) (Created page with '{{FileMethod| file:seek(bytes[, relative]) | Moves the read cursor in the file. | {{MethodParam|bytes|An integer|How many bytes to move.}} {{MethodParam|relative|Optional boolean...') (top)
- 18:43, 7 February 2010 (diff | hist) N IsOk (File) (Created page with '{{FileMethod| file:isOk() | Checks if a ReadFile is in "ok" status. | {{NoParams}} | Returns true if the file has been opened and can be read from. }} === Example === <pre> lo...') (top)
- 18:41, 7 February 2010 (diff | hist) N Close (File) (Created page with '{{FileMethod| file:close() | Closes the file handle. No reading or writing is possible on a file that has been closed. | {{NoParams}} | Returns nothing. }} === Example === <pre> ...') (top)
- 18:40, 7 February 2010 (diff | hist) N Template:FileMethod (Created page with '{| border=2 cellpadding=3 cellspacing=0 style="margin: 0 0 1em 1em; border-collapse: collapse;" |- |style="background:#97c7d7; font-size:150%;" colspan="3"|'''{{{1}}}''' |- |cols...') (top)
- 18:36, 7 February 2010 (diff | hist) ReadFile (top)
- 18:32, 7 February 2010 (diff | hist) WriteFile (top)
- 18:29, 7 February 2010 (diff | hist) File Objects
- 18:22, 7 February 2010 (diff | hist) N ReadFile (Created page with '{{File}}The ReadFile class will open a binary file for reading. === Example === <pre> local path = daisy.getUserFolderPath("") local file = ReadFile(path .. filename) ...')
- 18:21, 7 February 2010 (diff | hist) m WriteFile
- 18:20, 7 February 2010 (diff | hist) N WriteFile (Created page with 'The WriteFile class will create a binary file for writing. === Example === <pre> local path = daisy.getUserFolderPath("") local file = WriteFile(path .. filename) fil...')
- 18:18, 7 February 2010 (diff | hist) N File Objects (Created page with '{{File}} DaisyMoon contains classes for writing and reading binary files. These can be useful if you want to have creater control over the file structure, as Lua generally only ...')
- 18:15, 7 February 2010 (diff | hist) N Template:File (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;" |...') (top)
- 13:38, 7 February 2010 (diff | hist) DaisyMoon Application (→v1.1.0) (top)
- 13:37, 7 February 2010 (diff | hist) N SetForcePointSampling (Created page with '{{VideoMethod| video.setForcePointSampling(onOff) | Enables or disables forced point sampling of 2d sprites. If you enable this, all 2D sprites will be rendered using point sampl...') (top)
- 13:32, 7 February 2010 (diff | hist) Template:Video (top)
- 13:10, 7 February 2010 (diff | hist) N Harvest Library (Created page with '{{Harvest}} The Harvest library is the set of methods that are available for Harvest mods. All methods begin with "harvest.". Harvest was the first of Oxeye Game Studio's games...') (top)
- 13:03, 7 February 2010 (diff | hist) m Physics Object (top)
- 13:02, 7 February 2010 (diff | hist) m Physics Object
- 13:01, 7 February 2010 (diff | hist) N DeleteEntity (Created page with '{{PhysicsMethod| physics:deleteEntity(entityId) | Removes all shapes, collisions, joints and the body identified with the entityId. Since the number of entity identifiers is limi...') (top)
- 12:59, 7 February 2010 (diff | hist) N GetEntitySensorPoints (Created page with '{{PhysicsMethod| physics:getEntitySensorPoints(entityId) | Fetches a list of current sensor intersection points for a given entity. This list will not include real collisions, th...') (top)
- 12:56, 7 February 2010 (diff | hist) N GetEntityCollisions (Created page with '{{PhysicsMethod| physics:getEntityCollisions(entityId) | Fetches a list of current collision points for a given entity. This list will not include sensor points, they are stored ...') (top)
- 12:43, 7 February 2010 (diff | hist) N ApplyEntityForce (Created page with '{{PhysicsMethod| physics:applyEntityForce(entityId, positionX, positionY, forceX, forceY) | Applies a force at a given world position on a given entity. | {{MethodParam|enitityId...') (top)
- 12:38, 7 February 2010 (diff | hist) N GetEntityXForm (Created page with '{{PhysicsMethod| physics:getEntityXForm(entityId) | Fetches the 2D matrix that defines the entity's current position and rotation in world space. | {{MethodParam|enitityId|An int...') (top)
- 12:31, 7 February 2010 (diff | hist) N Update (Physics) (Created page with '{{PhysicsMethod| physics:update(timeStep, iterations) | Updates the physics world and all activated entities. | {{MethodParam|timeStep|A number|The time since the last update, me...') (top)
- 12:29, 7 February 2010 (diff | hist) N SetEntityAngle (Created page with '{{PhysicsMethod| physics:setEntityAngle(entityId, angle) | Forces the entity's body angle to be set to a certain value. Works even if the body's definition has set fixedRotation....') (top)
- 12:27, 7 February 2010 (diff | hist) N AddBoxShape (Created page with '{{PhysicsMethod| physics:addBoxShape(entityId, shapeDefinition) | Adds a box shape to an entity's body. | {{MethodParam|entityId|An integer|The entity's body identifier, which is...') (top)
- 12:25, 7 February 2010 (diff | hist) N Common Shape Settings (Created page with 'These settings can be set for all entity shapes. {| border=2 cellpadding=3 cellspacing=0 style="margin: 0 0 1em 1em; border-collapse: collapse;" |- |style="background:#c797d7"| ...') (top)
- 12:05, 7 February 2010 (diff | hist) N CreateEntity (Created page with '{{PhysicsMethod| physics:createEntity(bodyDefinition, x, y) | Creates and adds a new physics body to the physics object. | {{MethodParam|bodyDefinition|A table|The body definitio...') (top)
- 11:54, 7 February 2010 (diff | hist) N ActivateEntity (Created page with '{{PhysicsMethod| physics:activateEntity(entityId) | Calculates and sets the mass for an entity. Entities that have mass are treated as "active" objects by Box2d, and will be upda...') (top)
- 11:50, 7 February 2010 (diff | hist) N Template:PhysicsMethod (Created page with '{| border=2 cellpadding=3 cellspacing=0 style="margin: 0 0 1em 1em; border-collapse: collapse;" |- |style="background:#c797d7; font-size:150%;" colspan="3"|'''{{{1}}}''' |- |cols...') (top)
- 11:48, 7 February 2010 (diff | hist) N Template:Physics (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;" |...') (top)
- 11:38, 7 February 2010 (diff | hist) N Drag the Wall (Created page with '== Description == In Drag the Wall your objective is to pull the white wall piece with your mouse so that it touches all of the small white boxes. In the small room there are fo...') (top)
- 11:25, 7 February 2010 (diff | hist) Category:Daisymoon (→Getting Started) (top)
- 23:22, 6 February 2010 (diff | hist) Engine Suggestions (→Under Evaluation) (top)
- 20:30, 6 February 2010 (diff | hist) DaisyMoon Application (→Application Versions)
(Latest | Earliest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)