<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="de">
	<id>http://hyperdramatik.net/mediawiki/index.php?action=history&amp;feed=atom&amp;title=A%29_transform.position</id>
	<title>A) transform.position - Versionsgeschichte</title>
	<link rel="self" type="application/atom+xml" href="http://hyperdramatik.net/mediawiki/index.php?action=history&amp;feed=atom&amp;title=A%29_transform.position"/>
	<link rel="alternate" type="text/html" href="http://hyperdramatik.net/mediawiki/index.php?title=A)_transform.position&amp;action=history"/>
	<updated>2026-07-25T01:57:15Z</updated>
	<subtitle>Versionsgeschichte dieser Seite in hyperdramatik</subtitle>
	<generator>MediaWiki 1.38.2</generator>
	<entry>
		<id>http://hyperdramatik.net/mediawiki/index.php?title=A)_transform.position&amp;diff=544&amp;oldid=prev</id>
		<title>TomasM: Die Seite wurde neu angelegt: „ '''Transform:''' a Class which contains the information of position, rotation and scale of an object.    '''transform.position:''' The position property of a…“</title>
		<link rel="alternate" type="text/html" href="http://hyperdramatik.net/mediawiki/index.php?title=A)_transform.position&amp;diff=544&amp;oldid=prev"/>
		<updated>2019-10-23T14:47:21Z</updated>

		<summary type="html">&lt;p&gt;Die Seite wurde neu angelegt: „ &amp;#039;&amp;#039;&amp;#039;Transform:&amp;#039;&amp;#039;&amp;#039; a Class which contains the information of position, rotation and scale of an object.    &amp;#039;&amp;#039;&amp;#039;transform.position:&amp;#039;&amp;#039;&amp;#039; The position property of a…“&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Neue Seite&lt;/b&gt;&lt;/p&gt;&lt;div&gt;&lt;br /&gt;
'''Transform:''' a Class which contains the information of position, rotation and scale of an object.  &lt;br /&gt;
&lt;br /&gt;
'''transform.position:''' The position property of a GameObject's Transform. Assigns the object a new position.&lt;br /&gt;
&lt;br /&gt;
'''Vector:''' A Class refering to a mathematical entity commonly drewn as an arrow in two or three dimensional space, which has a a magnitude (size or length) and a direction (angle θ). &lt;br /&gt;
&lt;br /&gt;
'''Vector3:''' is a Unity C# struct with given x, y &amp;amp; z components, representing points and vectors in 3D space. In other words, a group of Vectors. &lt;br /&gt;
&lt;br /&gt;
example 1)&lt;br /&gt;
 private void Update()&lt;br /&gt;
    {&lt;br /&gt;
        transform.position += transform.forward * Time.deltaTime; &lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
* the “f” is there to state that the variable 0.01 is of type float.&lt;br /&gt;
&lt;br /&gt;
example 2)&lt;br /&gt;
     void Update()&lt;br /&gt;
    {&lt;br /&gt;
      transform.position += new Vector3(0, 0, 0.01f);&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
*Vector3.forward is the unit vector defined by (0, 0, 1)&lt;br /&gt;
*Time.deltaTime is a variable used so velocity is consistent across different frame  rates.&lt;/div&gt;</summary>
		<author><name>TomasM</name></author>
	</entry>
</feed>