<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://wiki.spheredev.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Eggbert</id>
		<title>Spherical wiki - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="http://wiki.spheredev.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Eggbert"/>
		<link rel="alternate" type="text/html" href="http://wiki.spheredev.org/index.php?title=Special:Contributions/Eggbert"/>
		<updated>2026-05-04T19:36:34Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.29.0</generator>

	<entry>
		<id>http://wiki.spheredev.org/index.php?title=API:Prim.blit&amp;diff=10187</id>
		<title>API:Prim.blit</title>
		<link rel="alternate" type="text/html" href="http://wiki.spheredev.org/index.php?title=API:Prim.blit&amp;diff=10187"/>
				<updated>2019-01-03T21:29:27Z</updated>
		
		<summary type="html">&lt;p&gt;Eggbert: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Draws the specified texture as a plain image onto ''surface''.&lt;br /&gt;
&lt;br /&gt;
===== Usage =====&lt;br /&gt;
&lt;br /&gt;
 '''Prim.blit'''(''surface'', ''x'', ''y'', ''texture'' [, ''mask'']);&lt;br /&gt;
&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
=== Parameters ===&lt;br /&gt;
&lt;br /&gt;
:{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Name&lt;br /&gt;
!Type&lt;br /&gt;
!Default Value&lt;br /&gt;
!Description&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;lt;tt&amp;gt;surface&amp;lt;/tt&amp;gt;''&lt;br /&gt;
|style=&amp;quot;text-align: center;&amp;quot;|''Surface''&lt;br /&gt;
|''n/a (Required)''&lt;br /&gt;
|The surface object that ''texture'' will be drawn onto&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;lt;tt&amp;gt;x&amp;lt;/tt&amp;gt;''&lt;br /&gt;
|style=&amp;quot;text-align: center;&amp;quot;|''number''&lt;br /&gt;
|''n/a (Required)''&lt;br /&gt;
|The position on the x axis.&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;lt;tt&amp;gt;y&amp;lt;/tt&amp;gt;''&lt;br /&gt;
|style=&amp;quot;text-align: center;&amp;quot;|''number''&lt;br /&gt;
|''n/a (Required)''&lt;br /&gt;
|The position on the y axis.&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;lt;tt&amp;gt;texture&amp;lt;/tt&amp;gt;''&lt;br /&gt;
|style=&amp;quot;text-align: center;&amp;quot;|''Texture''&lt;br /&gt;
|''n/a (Required)''&lt;br /&gt;
|The texture to be drawn.&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;lt;tt&amp;gt;mask&amp;lt;/tt&amp;gt;''&lt;br /&gt;
|style=&amp;quot;text-align: center;&amp;quot;|''[[Color]]''&lt;br /&gt;
|&amp;lt;tt&amp;gt;Color.White&amp;lt;/tt&amp;gt;&lt;br /&gt;
|The mask that will be applied&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* [[API:Prim.blitSection|Prim.blitSection()]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Sphere 2 API]]&lt;/div&gt;</summary>
		<author><name>Eggbert</name></author>	</entry>

	<entry>
		<id>http://wiki.spheredev.org/index.php?title=API:Sphere.abort&amp;diff=10186</id>
		<title>API:Sphere.abort</title>
		<link rel="alternate" type="text/html" href="http://wiki.spheredev.org/index.php?title=API:Sphere.abort&amp;diff=10186"/>
				<updated>2019-01-03T21:23:46Z</updated>
		
		<summary type="html">&lt;p&gt;Eggbert: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Sphere.abort()}}&lt;br /&gt;
''API Level: 1''&lt;br /&gt;
&lt;br /&gt;
The '''&amp;lt;tt&amp;gt;Sphere.abort()&amp;lt;/tt&amp;gt;''' [[API:Functions|Core API]] function aborts execution of the game and displays the given message.&lt;br /&gt;
&lt;br /&gt;
===== Usage =====&lt;br /&gt;
&lt;br /&gt;
 '''Sphere.abort'''(''message'');&lt;br /&gt;
&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
=== Description ===&lt;br /&gt;
&lt;br /&gt;
'''&amp;lt;tt&amp;gt;Sphere.abort()&amp;lt;/tt&amp;gt;''' is effectively a forced crash: JavaScript execution will cease immediately, and the exception screen will be shown displaying `message`.&lt;br /&gt;
&lt;br /&gt;
''Note: Sphere.abort() bypasses all exception handling mechanisms, including the debugger if it's attached. Be sure you know what you're doing!''&lt;br /&gt;
&lt;br /&gt;
===Parameters===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td align=right width=100&amp;gt;'''''message'''''&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The message to be shown.&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Sphere 2 API]]&lt;/div&gt;</summary>
		<author><name>Eggbert</name></author>	</entry>

	<entry>
		<id>http://wiki.spheredev.org/index.php?title=API:Prim.blit&amp;diff=10185</id>
		<title>API:Prim.blit</title>
		<link rel="alternate" type="text/html" href="http://wiki.spheredev.org/index.php?title=API:Prim.blit&amp;diff=10185"/>
				<updated>2019-01-03T21:10:57Z</updated>
		
		<summary type="html">&lt;p&gt;Eggbert: Created page with &amp;quot;{{subst:functemp|preamble=Draws the specified texture as a plain image.|function=blit|object=Prim|returns=|params=surface,x,y,texture,mask}}&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
&lt;br /&gt;
Draws the specified texture as a plain image.&lt;br /&gt;
&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
==Usage==&lt;br /&gt;
{{Usage|returns=|object=Prim|func=blit|params=surface,x,y,texture,mask}}&lt;br /&gt;
&lt;br /&gt;
* '''param1''' type. param1 description&lt;br /&gt;
* '''param2''' type. param2 description&lt;br /&gt;
* '''paramN''' type. paramN description&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
(examples with syntaxhighlighted code)&lt;br /&gt;
&lt;br /&gt;
==Notes==&lt;br /&gt;
(notes)&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* see also&lt;br /&gt;
* see also&lt;br /&gt;
* see also&lt;br /&gt;
* etc&lt;/div&gt;</summary>
		<author><name>Eggbert</name></author>	</entry>

	<entry>
		<id>http://wiki.spheredev.org/index.php?title=API:Sphere.abort&amp;diff=10184</id>
		<title>API:Sphere.abort</title>
		<link rel="alternate" type="text/html" href="http://wiki.spheredev.org/index.php?title=API:Sphere.abort&amp;diff=10184"/>
				<updated>2019-01-03T20:57:20Z</updated>
		
		<summary type="html">&lt;p&gt;Eggbert: Created page with &amp;quot;{{DISPLAYTITLE:Sphere.abort()}} ''API Level: 1''  The '''&amp;lt;tt&amp;gt;Sphere.abort()&amp;lt;/tt&amp;gt;''' Core API function aborts execution of the game and displays the given mes...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Sphere.abort()}}&lt;br /&gt;
''API Level: 1''&lt;br /&gt;
&lt;br /&gt;
The '''&amp;lt;tt&amp;gt;Sphere.abort()&amp;lt;/tt&amp;gt;''' [[API:Functions|Core API]] function aborts execution of the game and displays the given message.&lt;br /&gt;
&lt;br /&gt;
===== Usage =====&lt;br /&gt;
&lt;br /&gt;
 '''Sphere.abort'''(''message'');&lt;br /&gt;
&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
=== Description ===&lt;br /&gt;
&lt;br /&gt;
'''&amp;lt;tt&amp;gt;Sphere.abort()&amp;lt;/tt&amp;gt;''' is effectively a forced crash: JavaScript execution will cease immediately, and the exception screen will be shown displaying `message`.&lt;br /&gt;
&lt;br /&gt;
''Note: Sphere.abort() bypasses all exception handling mechanisms, including the debugger if it's attached. Be sure you know what you're doing!''&lt;br /&gt;
&lt;br /&gt;
===Parameters===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td align=right width=100&amp;gt;'''''message'''''&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The message to be shown.&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;/div&gt;</summary>
		<author><name>Eggbert</name></author>	</entry>

	<entry>
		<id>http://wiki.spheredev.org/index.php?title=User:Eggbert&amp;diff=386</id>
		<title>User:Eggbert</title>
		<link rel="alternate" type="text/html" href="http://wiki.spheredev.org/index.php?title=User:Eggbert&amp;diff=386"/>
				<updated>2013-04-26T20:21:26Z</updated>
		
		<summary type="html">&lt;p&gt;Eggbert: Created page with &amp;quot;boop&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;boop&lt;/div&gt;</summary>
		<author><name>Eggbert</name></author>	</entry>

	</feed>