User contributions
Jump to navigation
Jump to search
- 15:22, 17 March 2020 diff hist -9 Indexes →Example
- 15:21, 17 March 2020 diff hist 0 m Join JoeStrout moved page Self.join to Join without leaving a redirect
- 22:26, 14 March 2020 diff hist +64 m Main Page
- 00:23, 14 March 2020 diff hist +439 How to package a Mini Micro game
- 00:22, 14 March 2020 diff hist +2,287 How to package a Mini Micro game
- 00:12, 14 March 2020 diff hist -2 How to package a Mini Micro game →Packaging for the Web
- 00:11, 14 March 2020 diff hist +25 Startup.ms
- 00:11, 14 March 2020 diff hist +233 N Startup.ms Created page with "The special file '''startup.ms''', if located at the root level of the user.minidisk file found by Mini Micro when it starts up, will be automatically loaded and run...."
- 00:09, 14 March 2020 diff hist +8 How to package a Mini Micro game
- 00:08, 14 March 2020 diff hist +884 How to package a Mini Micro game →Packaging for Windows Download
- 23:55, 13 March 2020 diff hist +847 N How to package a Mini Micro game Created page with "To "package" a Mini Micro game means to bundle up all the files into a format that end-users can download (or access on the web) and play without needing anything else. T..."
- 02:51, 13 March 2020 diff hist +282 Mini Micro
- 02:49, 13 March 2020 diff hist -10 m Main Page
- 02:48, 13 March 2020 diff hist +125 Mini Micro →Features
- 02:46, 13 March 2020 diff hist +43 Mini Micro
- 02:45, 13 March 2020 diff hist +52 N File:MiniMicro256.png Mini Micro logo (256x192 version). current
- 02:43, 13 March 2020 diff hist +4 Category:Mini Micro current
- 22:39, 11 March 2020 diff hist +771 N How to run a program on startup Created page with "In Mini Micro, any program found at /usr/startup.ms on the default user disk is run when the machine starts up. You can use this when packaging your game for distribution..." current
- 22:13, 11 March 2020 diff hist +643 N How to detect NaN Created page with "Invalid math operations may result in a numeric value of NaN ("Not a Number"). These values have special semantics: they are not considered equal to anything, even themselves..." current
- 03:56, 11 March 2020 diff hist +43 N Category:Numeric Functions Created page with "The functions below all operate on numbers." current
- 03:56, 11 March 2020 diff hist +31 Abs current
- 03:56, 11 March 2020 diff hist +388 N Acos Created page with "The <msinline>acos</msinline> function returns the inverse cosine, that is, the angle (in radians) whose cosine is the given value. === Arguments === {| class="wikitable" |..." current
- 03:53, 11 March 2020 diff hist +314 N Abs Created page with "The <msinline>abs</msinline> function returns the absolute value of the given number. === Arguments === {| class="wikitable" |- ! Parameter Name !! Default Value !! Meaning..."
- 16:53, 8 March 2020 diff hist +433 How to detect a click on a sprite
- 15:18, 8 March 2020 diff hist +53 N File:ScreenCoordinates.png Illustration of screen coordinates. current
- 15:17, 8 March 2020 diff hist +377 N Screen coordinates Created page with "In Mini Micro, screen coordinates refers to the number of pixels from the bottom-left corner of the screen. These are the coordinates returned by mouse.x and mouse...."
- 14:42, 8 March 2020 diff hist +9 Mouse
- 14:40, 8 March 2020 diff hist +564 N Mouse Created page with "In Mini Micro, the <msinline>mouse</msinline> module is a small collection of functions related to detecting the mouse state, and controlling display of the mouse cursor...."
- 14:35, 8 March 2020 diff hist +4 Mouse.button
- 14:28, 8 March 2020 diff hist +987 N Mouse.button Created page with "In Mini Micro, the mouse.button function returns whether a given mouse button is currently pressed. === Arguments === {| class="wikitable" |- ! Parameter Name !! Default..."
- 14:16, 8 March 2020 diff hist +30 How to detect a click on a sprite →Example
- 14:15, 8 March 2020 diff hist +68 N File:SpriteClickDemo.png Screen shot for How to detect a click on a sprite. current
- 14:14, 8 March 2020 diff hist +1,312 N How to detect a click on a sprite Created page with "To detect a mouse click on a sprite, give the sprite a localBounds, and then call .contains on the sprite, passing in mouse. Th..."
- 22:21, 7 March 2020 diff hist +45 m How to make a sprite translucent
- 22:21, 7 March 2020 diff hist +118 How to make a sprite translucent
- 22:20, 7 March 2020 diff hist +30 How to make a sprite translucent →Example
- 22:19, 7 March 2020 diff hist +83 N File:HowToFadeSprite.png Screen shot from the example on How to make a sprite translucent. current
- 22:18, 7 March 2020 diff hist +881 N How to make a sprite translucent Created page with "You can change the opacity of a sprite by using the alpha channel of the tint color. An alpha value of 255 (or FF in hex) is completely opaque; an alpha value of zero is comp..."
- 16:35, 6 March 2020 diff hist +108 How to point a sprite at a target →Example
- 16:34, 6 March 2020 diff hist +35 How to point a sprite at a target →Example
- 16:33, 6 March 2020 diff hist +111 N File:HowToPointScreenshot.png Screen shot of the How to point a sprite at a file code example, in several different states.
- 13:58, 6 March 2020 diff hist +366 How to move a sprite forward
- 13:56, 6 March 2020 diff hist +1,068 N How to move a sprite forward Created page with "Move a sprite in its "forward" direction (i.e. in the +X direction when the sprite is not rotated) by using the cos and sin functions, as shown below. Note that cos..."
- 14:15, 5 March 2020 diff hist +53 How to point a sprite at a target
- 14:14, 5 March 2020 diff hist +793 N How to move a sprite towards a target Created page with "To move a sprite at a constant speed towards a target, find the difference in X and Y, and normalize by multiplying by the desired speed divided by the total distance. Then s..."
- 15:17, 4 March 2020 diff hist +667 N How to check if one value contains another Created page with "If you need to check whether a string contains a given substring, or a list or map contains a specified value, then you can use indexOf and compare the result to null...." current
- 14:19, 4 March 2020 diff hist +350 N How to load a sprite from the web Created page with "To load a sprite from an image on the web, simply pass the URL to http.get, and assign the result to the sprite's .image property. == Example == <ms>clea..."
- 13:59, 4 March 2020 diff hist +273 N Category:How To Created page with "These "How To" articles each explain how to accomplish one small task, usually with a complete example you can paste in and try. Many of the examples apply to a specific envi..." current
- 13:57, 4 March 2020 diff hist +536 N How to point a sprite at a target Created page with "To point a sprite at a target, use the atan function to calculate the angle in radians, then multiply by 180/pi to convert to degrees, and assign the result to the spr..."
- 20:57, 29 February 2020 diff hist -26 Print →Example