User contributions
Jump to navigation
Jump to search
- 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
- 20:56, 29 February 2020 diff hist -26 Len →Example current
- 18:14, 29 February 2020 diff hist -43 Open-Source Projects
- 16:47, 27 February 2020 diff hist +170 Open-Source Projects
- 16:23, 27 February 2020 diff hist +249 Open-Source Projects
- 16:10, 27 February 2020 diff hist +774 N Open-Source Projects Created page with "This page is a collection of links to open-source projects in or for MiniScript. === Main Repository === https://github.com/JoeStrout/miniscript Official repository of sourc..."
- 02:54, 23 February 2020 diff hist +3 m Naming Conventions →Short Names
- 02:53, 23 February 2020 diff hist +1 m Naming Conventions
- 02:53, 23 February 2020 diff hist +9 m Naming Conventions
- 19:16, 21 February 2020 diff hist 0 m Naming Conventions →Short Names
- 19:15, 21 February 2020 diff hist +26 m Naming Conventions
- 19:14, 21 February 2020 diff hist +2,035 N Naming Conventions Created page with "The MiniScript intrinsic functions and Mini Micro API have established the following conventions with regard to naming variables. == Capitalizatio..."
- 01:41, 21 February 2020 diff hist +52 N Category:Map Methods Created page with "These are methods that work on or with maps." current
- 01:40, 21 February 2020 diff hist +58 N Category:String Methods Created page with "These are methods that work on or with strings." current
- 01:40, 21 February 2020 diff hist +54 N Category:List Methods Created page with "These are methods that work on or with lists." current
- 01:39, 21 February 2020 diff hist +1 m Len
- 01:39, 21 February 2020 diff hist +907 N Len Created page with "<c>len</c> is a intrinsic function that returns the number of elements in a list, the number of characters in a string, or the number..."
- 21:06, 20 February 2020 diff hist +25 Parentheses
- 21:05, 20 February 2020 diff hist +72 N Category:Conventions Created page with "Pages in this category describe standard practices for using MiniScript." current
- 21:03, 20 February 2020 diff hist +11 File extension current
- 21:03, 20 February 2020 diff hist +114 N File extension Created page with "The standard file extension for MiniScript files is: '''.ms''' See also MIME types. Category:Conventions"
- 21:02, 20 February 2020 diff hist +168 N Mime types Created page with "MiniScript scripts may be identified as the following MIME types: * text/x-minicript * application/x-miniscript See also file extension. Category:Conventions"
- 20:59, 20 February 2020 diff hist +73 New
- 14:54, 20 February 2020 diff hist +11 m Main Page
- 14:53, 20 February 2020 diff hist +285 Main Page
- 14:50, 20 February 2020 diff hist +140 N Category:Intrinsic Functions Created page with "Intrinsic functions are functions that are predefined, either as part of the MiniScript core, or added by the host environment." current
- 14:49, 20 February 2020 diff hist +907 N Print Created page with "<c>print</c> is an intrinsic function that displays a string to the user. It is a standard intrinsic, though there may be some implement..."
- 14:39, 20 February 2020 diff hist +23 Parentheses
- 14:39, 20 February 2020 diff hist +1,565 N Parentheses Created page with "Parentheses in MiniScript have only three uses: 1. Use them to group math operations in the order you want them, just as in algebra. <source lang="miniscript">x = (2+4)*7..."
- 04:40, 20 February 2020 diff hist +122 N Category:Operators Created page with "Operators are symbols or keywords that act directly on operands supplied either after, or on either side of, the operator." current
- 04:38, 20 February 2020 diff hist +228 N Category:Data Types Created page with "MiniScript has only a handful of core data types, shown below. Particular host environments may add more, but usually any additional types are implemented as maps using standa..."
- 04:34, 20 February 2020 diff hist +126 N Map Created page with "<c>map</c> is one of the core Category:data types in MiniScript. Category:Language Category:Data Types {{stub}}"
- 04:34, 20 February 2020 diff hist +127 N List Created page with "<c>list</c> is one of the core Category:data types in MiniScript. Category:Language Category:Data Types {{stub}}"
- 04:34, 20 February 2020 diff hist +129 N Number Created page with "<c>number</c> is one of the core Category:data types in MiniScript. Category:Language Category:Data Types {{stub}}"
- 04:33, 20 February 2020 diff hist +129 N String Created page with "<c>string</c> is one of the core Category:data types in MiniScript. Category:Language Category:Data Types {{stub}}"
- 04:32, 20 February 2020 diff hist +152 N End function Created page with "The <c>end function</c> keyword statement terminates a function block. Category:Language Category:Keywords {{stub}}" current
- 04:31, 20 February 2020 diff hist +145 N End while Created page with "The <c>end while</c> keyword statement terminates a while loop. Category:Language Category:Keywords {{stub}}" current