<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.rage.mp/w/index.php?action=history&amp;feed=atom&amp;title=Create3DColShape</id>
	<title>Create3DColShape - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.rage.mp/w/index.php?action=history&amp;feed=atom&amp;title=Create3DColShape"/>
	<link rel="alternate" type="text/html" href="https://wiki.rage.mp/w/index.php?title=Create3DColShape&amp;action=history"/>
	<updated>2026-07-18T15:30:14Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.40.0</generator>
	<entry>
		<id>https://wiki.rage.mp/w/index.php?title=Create3DColShape&amp;diff=18420&amp;oldid=prev</id>
		<title>Xabi: Xabi moved page NAPI.ColShape.Create3DColShape to Create3DColShape</title>
		<link rel="alternate" type="text/html" href="https://wiki.rage.mp/w/index.php?title=Create3DColShape&amp;diff=18420&amp;oldid=prev"/>
		<updated>2019-11-27T13:07:40Z</updated>

		<summary type="html">&lt;p&gt;Xabi moved page &lt;a href=&quot;/wiki/NAPI.ColShape.Create3DColShape&quot; class=&quot;mw-redirect&quot; title=&quot;NAPI.ColShape.Create3DColShape&quot;&gt;NAPI.ColShape.Create3DColShape&lt;/a&gt; to &lt;a href=&quot;/wiki/Create3DColShape&quot; title=&quot;Create3DColShape&quot;&gt;Create3DColShape&lt;/a&gt;&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Revision as of 13:07, 27 November 2019&lt;/td&gt;
				&lt;/tr&gt;
&lt;!-- diff cache key rmp_wiki:diff::1.12:old-18308:rev-18420 --&gt;
&lt;/table&gt;</summary>
		<author><name>Xabi</name></author>
	</entry>
	<entry>
		<id>https://wiki.rage.mp/w/index.php?title=Create3DColShape&amp;diff=18308&amp;oldid=prev</id>
		<title>Muphy: Created page with &quot;Creates a 3D collision shape which checks whether an entity is inside of a rectangular area. If you don&#039;t care about the height, you can use Create2DColShape instead.  ==S...&quot;</title>
		<link rel="alternate" type="text/html" href="https://wiki.rage.mp/w/index.php?title=Create3DColShape&amp;diff=18308&amp;oldid=prev"/>
		<updated>2019-11-27T01:25:28Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;Creates a 3D collision shape which checks whether an entity is inside of a rectangular area. If you don&amp;#039;t care about the height, you can use &lt;a href=&quot;/wiki/Create2DColShape&quot; title=&quot;Create2DColShape&quot;&gt;Create2DColShape&lt;/a&gt; instead.  ==S...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;Creates a 3D collision shape which checks whether an entity is inside of a rectangular area. If you don&amp;#039;t care about the height, you can use [[Create2DColShape]] instead.&lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;C#&amp;quot; &amp;gt;ColShape NAPI.ColShape.Create3DColShape(Vector3 start, Vector3 end [, uint dimension = NAPI.GlobalDimension ]);&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Required Arguments&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
*&amp;#039;&amp;#039;&amp;#039;start:&amp;#039;&amp;#039;&amp;#039; parameter input should be in &amp;#039;&amp;#039;&amp;#039;Vector3&amp;#039;&amp;#039;&amp;#039; type.&lt;br /&gt;
*&amp;#039;&amp;#039;&amp;#039;end:&amp;#039;&amp;#039;&amp;#039; parameter input should be in &amp;#039;&amp;#039;&amp;#039;Vector3&amp;#039;&amp;#039;&amp;#039; type.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Optional Arguments&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
*&amp;#039;&amp;#039;&amp;#039;dimension:&amp;#039;&amp;#039;&amp;#039; parameter input should be in &amp;#039;&amp;#039;&amp;#039;uint&amp;#039;&amp;#039;&amp;#039; type.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;NOTE:&amp;#039;&amp;#039;&amp;#039; This function returns data in &amp;#039;&amp;#039;&amp;#039;ColShape&amp;#039;&amp;#039;&amp;#039; type.&lt;br /&gt;
&lt;br /&gt;
==Usage example(s)==&lt;br /&gt;
Example Description&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;C#&amp;quot; &amp;gt;&lt;br /&gt;
ColShape shape = NAPI.ColShape.Create3DColShape(new Vector3(100.0f, 100.0f, 100.0f), new Vector3(200.0f, 200.0f, 200.0f));&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Serverside API]]&lt;/div&gt;</summary>
		<author><name>Muphy</name></author>
	</entry>
</feed>