<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>blue Archives - Oxmond Technology</title>
	<atom:link href="https://oxmond.com/tag/blue/feed/" rel="self" type="application/rss+xml" />
	<link>https://oxmond.com</link>
	<description>IT Development</description>
	<lastBuildDate>Wed, 18 Nov 2020 05:02:26 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.0</generator>
	<item>
		<title>How to control a cube with the arrow keys</title>
		<link>https://oxmond.com/how-to-control-a-cube-with-the-arrow-keys/</link>
					<comments>https://oxmond.com/how-to-control-a-cube-with-the-arrow-keys/#respond</comments>
		
		<dc:creator><![CDATA[Oxmond Technology]]></dc:creator>
		<pubDate>Fri, 23 Nov 2018 15:52:48 +0000</pubDate>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Unity]]></category>
		<category><![CDATA[2018]]></category>
		<category><![CDATA[arrow keys]]></category>
		<category><![CDATA[basic]]></category>
		<category><![CDATA[beginners]]></category>
		<category><![CDATA[blue]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[coding pirates]]></category>
		<category><![CDATA[control]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[game making]]></category>
		<category><![CDATA[lesson]]></category>
		<category><![CDATA[red]]></category>
		<category><![CDATA[small game]]></category>
		<category><![CDATA[tutorials]]></category>
		<guid isPermaLink="false">https://oxmond.com/?p=304</guid>

					<description><![CDATA[<p>The most basic tutorial of all tutorials: How to move a cube with the arrow keys.If you are new to Unity, this is a good place to start. ❤️ Subscribe to Oxmond Tutorials:https://bit.ly/SubscribeOxmondTutorials 😷👕 Need a face mask / developer T-shirt? Drop by our shop...</p>
<p>The post <a rel="nofollow" href="https://oxmond.com/how-to-control-a-cube-with-the-arrow-keys/">How to control a cube with the arrow keys</a> appeared first on <a rel="nofollow" href="https://oxmond.com">Oxmond Technology</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>The most basic tutorial of all tutorials: How to move a cube with the arrow keys.<br />If you are new to Unity, this is a good place to start.</p>
<hr />
<p><strong><span style="font-weight: 400;">❤️ <strong>Subscribe to Oxmond Tutorials:</strong><br /><a href="https://bit.ly/SubscribeOxmondTutorials">https://bit.ly/SubscribeOxmondTutorials</a></span><br /></strong></p>
<p>😷👕 <strong>Need a face mask / developer T-shirt? Drop by our shop and get a 20% DISCOUNT on your first purchase by using the discount code OXMONDSALE. Click here:</strong> <br /><a href="https://shop.oxmond.com/discount/OXMONDSALE">https://shop.oxmond.com/discount/OXMONDSALE</a></p>
<hr />
<p><strong>Cube script:</strong></p>
<pre>/* .-------.                             .--.    .-------.     .--.            .--.     .--.        
   |       |--.--.--------.-----.-----.--|  |    |_     _|--.--|  |_.-----.----|__|---.-|  |-----.
   |   -   |_   _|        |  _  |     |  _  |      |   | |  |  |   _|  _  |   _|  |  _  |  |__ --|
   |_______|__.__|__|__|__|_____|__|__|_____|      |___| |_____|____|_____|__| |__|___._|__|_____|
   © OXMOND / www.oxmond.com */

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class Cube : MonoBehaviour {

	void Update () {      
             transform.Translate(Input.GetAxis("Horizontal") * Time.deltaTime * 15f,0f,0f);		
             transform.Translate(0f,0f, Input.GetAxis("Vertical") * Time.deltaTime * 15f);		
	}
}


</pre>

<p>&nbsp;</p>
<p>The post <a rel="nofollow" href="https://oxmond.com/how-to-control-a-cube-with-the-arrow-keys/">How to control a cube with the arrow keys</a> appeared first on <a rel="nofollow" href="https://oxmond.com">Oxmond Technology</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://oxmond.com/how-to-control-a-cube-with-the-arrow-keys/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
