<?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>sprite Archives - Oxmond Technology</title>
	<atom:link href="https://oxmond.com/tag/sprite/feed/" rel="self" type="application/rss+xml" />
	<link>https://oxmond.com</link>
	<description>IT Development</description>
	<lastBuildDate>Wed, 18 Nov 2020 05:12:56 +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 Write Time Delays In Your Code! [Beginner Tutorial &#8211; Unity 2020]</title>
		<link>https://oxmond.com/how-to-write-time-delays-in-your-code-beginner-tutorial-unity-2020/</link>
					<comments>https://oxmond.com/how-to-write-time-delays-in-your-code-beginner-tutorial-unity-2020/#comments</comments>
		
		<dc:creator><![CDATA[Oxmond Technology]]></dc:creator>
		<pubDate>Tue, 10 Nov 2020 15:52:31 +0000</pubDate>
				<category><![CDATA[Beginner]]></category>
		<category><![CDATA[C# Lesson]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Unity]]></category>
		<category><![CDATA[2019]]></category>
		<category><![CDATA[2D]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[Beginner Tutorial]]></category>
		<category><![CDATA[Clock]]></category>
		<category><![CDATA[delay]]></category>
		<category><![CDATA[delay action]]></category>
		<category><![CDATA[delay code]]></category>
		<category><![CDATA[delay function call]]></category>
		<category><![CDATA[delay update function]]></category>
		<category><![CDATA[easy]]></category>
		<category><![CDATA[execute code after delay]]></category>
		<category><![CDATA[future]]></category>
		<category><![CDATA[future execution]]></category>
		<category><![CDATA[gameobject]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[learn]]></category>
		<category><![CDATA[lesson]]></category>
		<category><![CDATA[method]]></category>
		<category><![CDATA[object]]></category>
		<category><![CDATA[Oxmond Unity Tutorials]]></category>
		<category><![CDATA[run code after delay]]></category>
		<category><![CDATA[scripting]]></category>
		<category><![CDATA[sprite]]></category>
		<category><![CDATA[time]]></category>
		<category><![CDATA[timeline]]></category>
		<category><![CDATA[timer]]></category>
		<category><![CDATA[tip]]></category>
		<category><![CDATA[Unity 2020]]></category>
		<category><![CDATA[Unity delay 1 second]]></category>
		<category><![CDATA[Unity delay code execution]]></category>
		<category><![CDATA[Unity delay start function]]></category>
		<category><![CDATA[Unity3d]]></category>
		<category><![CDATA[video games]]></category>
		<guid isPermaLink="false">https://oxmond.com/?p=799</guid>

					<description><![CDATA[<p>How to execute code with a delay? In this tutorial we will take a look at how we can delay script or functions in Unity. 🧡 Subscribe to Oxmond Tutorials. Stay tuned! https://bit.ly/SubscribeOxmondTutorials ✅ Free Assets from the Unity Assets Store: https://assetstore.unity.com/lists/top-free-packages-13201?aid=1100l4p9k 😷👕 Need a...</p>
<p>The post <a rel="nofollow" href="https://oxmond.com/how-to-write-time-delays-in-your-code-beginner-tutorial-unity-2020/">How to Write Time Delays In Your Code! [Beginner Tutorial &#8211; Unity 2020]</a> appeared first on <a rel="nofollow" href="https://oxmond.com">Oxmond Technology</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>How to execute code with a delay? In this tutorial we will take a look at how we can delay script or functions in Unity.</p>
<hr />
<p>🧡 Subscribe to Oxmond Tutorials. Stay tuned!<br />
<a href="https://bit.ly/SubscribeOxmondTutorials">https://bit.ly/SubscribeOxmondTutorials</a></p>
<p>✅ Free Assets from the Unity Assets Store:<br />
<a href="https://assetstore.unity.com/lists/top-free-packages-13201?aid=1100l4p9k">https://assetstore.unity.com/lists/top-free-packages-13201?aid=1100l4p9k</a></p>
<p>😷👕 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:<br />
<a href="https://shop.oxmond.com/discount/OXMONDSALE">https://shop.oxmond.com/discount/OXMONDSALE</a></p>
<p>Some links might be affiliate links. Any support is truly appreciated so we can keep on making high quality content</p>
<p>&nbsp;</p>
<p><strong>The Button script:</strong></p>
<pre>/*
   .-------.                             .--.    .-------.     .--.            .--.     .--.        
   |       |--.--.--------.-----.-----.--|  |    |_     _|--.--|  |_.-----.----|__|---.-|  |-----.
   |   -   |_   _|        |  _  |     |  _  |      |   | |  |  |   _|  _  |   _|  |  _  |  |__ --|
   |_______|__.__|__|__|__|_____|__|__|_____|      |___| |_____|____|_____|__| |__|___._|__|_____|
   © 2018-2020 OXMOND / www.oxmond.com 
*/

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class Button : MonoBehaviour
{

    public GameObject textBtnIsClicked;
    public GameObject textDelayedAction;

    private void OnMouseUp()
    {
        textBtnIsClicked.SetActive(true);
        Invoke("Action", 2.0f);
    }

    private void Action()
    {
        textDelayedAction.SetActive(true);
    }

}


</pre>
<p>The post <a rel="nofollow" href="https://oxmond.com/how-to-write-time-delays-in-your-code-beginner-tutorial-unity-2020/">How to Write Time Delays In Your Code! [Beginner Tutorial &#8211; Unity 2020]</a> appeared first on <a rel="nofollow" href="https://oxmond.com">Oxmond Technology</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://oxmond.com/how-to-write-time-delays-in-your-code-beginner-tutorial-unity-2020/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>How To Make An Object Glow in Unity 2020! [Beginner Tutorial &#8211; Unity 2020]</title>
		<link>https://oxmond.com/how-to-make-an-object-glow-in-unity-2020-beginner-tutorial-unity-2020/</link>
					<comments>https://oxmond.com/how-to-make-an-object-glow-in-unity-2020-beginner-tutorial-unity-2020/#comments</comments>
		
		<dc:creator><![CDATA[Oxmond Technology]]></dc:creator>
		<pubDate>Sun, 11 Oct 2020 09:40:45 +0000</pubDate>
				<category><![CDATA[Beginner]]></category>
		<category><![CDATA[Special Effect]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Unity]]></category>
		<category><![CDATA[2019]]></category>
		<category><![CDATA[2D]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[Beginner Tutorial]]></category>
		<category><![CDATA[bloom]]></category>
		<category><![CDATA[coding pirates]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[diffuse]]></category>
		<category><![CDATA[easy]]></category>
		<category><![CDATA[easy glow]]></category>
		<category><![CDATA[effect]]></category>
		<category><![CDATA[gameobject]]></category>
		<category><![CDATA[glow]]></category>
		<category><![CDATA[glow effect]]></category>
		<category><![CDATA[glow material]]></category>
		<category><![CDATA[Hans Oxmond]]></category>
		<category><![CDATA[HDR]]></category>
		<category><![CDATA[highlight]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[How To Make An Object Glow in Unity]]></category>
		<category><![CDATA[learn]]></category>
		<category><![CDATA[lesson]]></category>
		<category><![CDATA[light]]></category>
		<category><![CDATA[lightning]]></category>
		<category><![CDATA[material]]></category>
		<category><![CDATA[neon]]></category>
		<category><![CDATA[neon glow]]></category>
		<category><![CDATA[object]]></category>
		<category><![CDATA[outline]]></category>
		<category><![CDATA[Oxmond Unity Tutorials]]></category>
		<category><![CDATA[shader]]></category>
		<category><![CDATA[sprite]]></category>
		<category><![CDATA[sprite glow]]></category>
		<category><![CDATA[texture]]></category>
		<category><![CDATA[tip]]></category>
		<category><![CDATA[ui]]></category>
		<category><![CDATA[Unity 2020]]></category>
		<category><![CDATA[Unity3d]]></category>
		<category><![CDATA[video games]]></category>
		<guid isPermaLink="false">https://oxmond.com/?p=786</guid>

					<description><![CDATA[<p>In this tutorial we&#8217;ll create the awesome glow effect (also called bloom effect) on a Gameobject in Unity 2020. Using only a few easy steps. 🧡 Subscribe to Oxmond Tutorials. Stay tuned! https://bit.ly/SubscribeOxmondTutorials ✅ Download the Oxmond &#8220;X&#8221; logo bitmap here: https://oxmond.com/download/tutorials/unity/oxmond_x_bw.png 😷👕 Need a...</p>
<p>The post <a rel="nofollow" href="https://oxmond.com/how-to-make-an-object-glow-in-unity-2020-beginner-tutorial-unity-2020/">How To Make An Object Glow in Unity 2020! [Beginner Tutorial &#8211; Unity 2020]</a> appeared first on <a rel="nofollow" href="https://oxmond.com">Oxmond Technology</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><span style="font-weight: 400;">In this tutorial we&#8217;ll create the awesome glow effect (also called bloom effect) on a Gameobject in Unity 2020. Using only a few easy steps.</span></p>
<hr />
<p>🧡 Subscribe to Oxmond Tutorials. Stay tuned!<br />
<a href="https://bit.ly/SubscribeOxmondTutorials">https://bit.ly/SubscribeOxmondTutorials</a></p>
<p>✅ Download the Oxmond &#8220;X&#8221; logo bitmap here:<br />
<a href="https://oxmond.com/download/tutorials/unity/oxmond_x_bw.png">https://oxmond.com/download/tutorials/unity/oxmond_x_bw.png</a></p>
<p>😷👕 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:<br />
<a href="https://shop.oxmond.com/discount/OXMONDSALE">https://shop.oxmond.com/discount/OXMONDSALE</a></p>
<p>Some links might be affiliate links. Any support is truly appreciated so we can keep on making high quality content 🙂</p>
<p>&nbsp;</p>
<p>The post <a rel="nofollow" href="https://oxmond.com/how-to-make-an-object-glow-in-unity-2020-beginner-tutorial-unity-2020/">How To Make An Object Glow in Unity 2020! [Beginner Tutorial &#8211; Unity 2020]</a> appeared first on <a rel="nofollow" href="https://oxmond.com">Oxmond Technology</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://oxmond.com/how-to-make-an-object-glow-in-unity-2020-beginner-tutorial-unity-2020/feed/</wfw:commentRss>
			<slash:comments>5</slash:comments>
		
		
			</item>
		<item>
		<title>How To Modify The Pivot Point!</title>
		<link>https://oxmond.com/how-to-modify-the-pivot-point/</link>
					<comments>https://oxmond.com/how-to-modify-the-pivot-point/#respond</comments>
		
		<dc:creator><![CDATA[Oxmond Technology]]></dc:creator>
		<pubDate>Sun, 01 Sep 2019 21:50:06 +0000</pubDate>
				<category><![CDATA[Beginner]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Unity]]></category>
		<category><![CDATA[2019]]></category>
		<category><![CDATA[2D]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[adjust]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[around]]></category>
		<category><![CDATA[asset]]></category>
		<category><![CDATA[button]]></category>
		<category><![CDATA[change]]></category>
		<category><![CDATA[change pivot point]]></category>
		<category><![CDATA[coding pirates]]></category>
		<category><![CDATA[correct pivot point]]></category>
		<category><![CDATA[cube]]></category>
		<category><![CDATA[custom pivots in unity]]></category>
		<category><![CDATA[editor]]></category>
		<category><![CDATA[gameobject]]></category>
		<category><![CDATA[Hans Oxmond]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[learn]]></category>
		<category><![CDATA[lesson]]></category>
		<category><![CDATA[modify pivot point]]></category>
		<category><![CDATA[not working]]></category>
		<category><![CDATA[object]]></category>
		<category><![CDATA[Oxmond Unity Tutorials]]></category>
		<category><![CDATA[pivot]]></category>
		<category><![CDATA[pivot point of an object]]></category>
		<category><![CDATA[point]]></category>
		<category><![CDATA[point change]]></category>
		<category><![CDATA[point move]]></category>
		<category><![CDATA[position]]></category>
		<category><![CDATA[quad pivot]]></category>
		<category><![CDATA[rotate]]></category>
		<category><![CDATA[rotate around point]]></category>
		<category><![CDATA[rotatearound]]></category>
		<category><![CDATA[rotation]]></category>
		<category><![CDATA[sprite]]></category>
		<category><![CDATA[tip]]></category>
		<category><![CDATA[transform]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[Unity3d]]></category>
		<category><![CDATA[video games]]></category>
		<guid isPermaLink="false">https://oxmond.com/?p=586</guid>

					<description><![CDATA[<p>How to change the pivot point in Unity. ❤️ Subscribe to Oxmond Tutorials. New tutorials every day! Stay tuned! https://bit.ly/SubscribeOxmondTutorials ✅ Download the free Sunny Land asset here: https://assetstore.unity.com/packages/2d/characters/sunny-land-103349?aid=1100l4p9k ✅ Other free assets from the Unity Assets Store: https://assetstore.unity.com/lists/top-free-packages-13201?aid=1100l4p9k 😷👕 Need a face mask /...</p>
<p>The post <a rel="nofollow" href="https://oxmond.com/how-to-modify-the-pivot-point/">How To Modify The Pivot Point!</a> appeared first on <a rel="nofollow" href="https://oxmond.com">Oxmond Technology</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>How to change the pivot point in Unity.</p>
<hr />
<p><strong>❤️ Subscribe to Oxmond Tutorials. New tutorials every day! Stay tuned!</strong><br />
<a href="https://bit.ly/SubscribeOxmondTutorials">https://bit.ly/SubscribeOxmondTutorials</a></p>
<p><strong>✅ Download the free Sunny Land asset here:</strong><br />
<a href="https://assetstore.unity.com/packages/2d/characters/sunny-land-103349?aid=1100l4p9k">https://assetstore.unity.com/packages/2d/characters/sunny-land-103349?aid=1100l4p9k</a></p>
<p><strong>✅ Other free assets from the Unity Assets Store:</strong><br />
<a href="https://assetstore.unity.com/lists/top-free-packages-13201?aid=1100l4p9k">https://assetstore.unity.com/lists/top-free-packages-13201?aid=1100l4p9k</a></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>
<p>The post <a rel="nofollow" href="https://oxmond.com/how-to-modify-the-pivot-point/">How To Modify The Pivot Point!</a> appeared first on <a rel="nofollow" href="https://oxmond.com">Oxmond Technology</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://oxmond.com/how-to-modify-the-pivot-point/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How To Make An Object Glow in Unity? (DEPRICATED)</title>
		<link>https://oxmond.com/how-to-make-an-object-glow-in-unity/</link>
					<comments>https://oxmond.com/how-to-make-an-object-glow-in-unity/#respond</comments>
		
		<dc:creator><![CDATA[Oxmond Technology]]></dc:creator>
		<pubDate>Mon, 26 Aug 2019 08:49:28 +0000</pubDate>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Unity]]></category>
		<category><![CDATA[2019]]></category>
		<category><![CDATA[2D]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[Beginner Tutorial]]></category>
		<category><![CDATA[bloom]]></category>
		<category><![CDATA[coding pirates]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[diffuse]]></category>
		<category><![CDATA[easy]]></category>
		<category><![CDATA[easy glow]]></category>
		<category><![CDATA[effect]]></category>
		<category><![CDATA[gameobject]]></category>
		<category><![CDATA[glow]]></category>
		<category><![CDATA[glow effect]]></category>
		<category><![CDATA[glow material]]></category>
		<category><![CDATA[Hans Oxmond]]></category>
		<category><![CDATA[HDR]]></category>
		<category><![CDATA[highlight]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[How To Make An Object Glow in Unity]]></category>
		<category><![CDATA[learn]]></category>
		<category><![CDATA[lesson]]></category>
		<category><![CDATA[light]]></category>
		<category><![CDATA[lightning]]></category>
		<category><![CDATA[material]]></category>
		<category><![CDATA[michael kremmel]]></category>
		<category><![CDATA[neon]]></category>
		<category><![CDATA[neon glow]]></category>
		<category><![CDATA[object]]></category>
		<category><![CDATA[outline]]></category>
		<category><![CDATA[Oxmond Unity Tutorials]]></category>
		<category><![CDATA[shader]]></category>
		<category><![CDATA[sprite]]></category>
		<category><![CDATA[sprite glow]]></category>
		<category><![CDATA[texture]]></category>
		<category><![CDATA[tip]]></category>
		<category><![CDATA[ui]]></category>
		<category><![CDATA[unity 2019]]></category>
		<category><![CDATA[Unity3d]]></category>
		<category><![CDATA[video games]]></category>
		<guid isPermaLink="false">https://oxmond.com/?p=549</guid>

					<description><![CDATA[<p>UPDATE UPDATE UPDATE: MK Glow Free is no longer available at the Asset Store. (You can still use the paid version though) In Unity 2020 it&#8217;s much more easy to use the glow/bloom effect. Just follow this tutorial: https://www.youtube.com/watch?v=6SKHDaSe768 In this tutorial we&#8217;ll create the...</p>
<p>The post <a rel="nofollow" href="https://oxmond.com/how-to-make-an-object-glow-in-unity/">How To Make An Object Glow in Unity? (DEPRICATED)</a> appeared first on <a rel="nofollow" href="https://oxmond.com">Oxmond Technology</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><strong>UPDATE UPDATE UPDATE:</strong><br />
MK Glow Free is no longer available at the Asset Store. (You can still use the paid version though)</p>
<p>In Unity 2020 it&#8217;s much more easy to use the glow/bloom effect. Just follow this tutorial:<br />
<a href="https://www.youtube.com/watch?v=6SKHDaSe768&amp;">https://www.youtube.com/watch?v=6SKHDaSe768</a></p>
<p>In this tutorial we&#8217;ll create the awesome glow effect in both 2D and 3D. Download the Free MK Glow tool from the asset store. Follow the link below.</p>
<hr />
<p><strong>❤️ Subscribe to Oxmond Tutorials. Stay ahead of the game!</strong><br />
<a href="https://bit.ly/SubscribeOxmondTutorials">https://bit.ly/SubscribeOxmondTutorials</a></p>
<p>✅ <strong>Download MK Glow here:<br />
</strong><a href="https://assetstore.unity.com/packages/vfx/shaders/fullscreen-camera-effects/mk-glow-90204?aid=1100l4p9k">https://assetstore.unity.com/packages/vfx/shaders/fullscreen-camera-effects/mk-glow-90204?aid=1100l4p9k</a></p>
<p>✅ <strong>Download MK Glow Free here (DEPRICATED):</strong><br />
<a href="https://assetstore.unity.com/packages/vfx/shaders/fullscreen-camera-effects/mk-glow-free-28044?aid=1100l4p9k">https://assetstore.unity.com/packages/vfx/shaders/fullscreen-camera-effects/mk-glow-free-28044?aid=1100l4p9k</a></p>
<p>✅ <strong>Download the X bitmap here:</strong><br />
<a href="https://oxmond.com/download/tutorials/unity/oxmond_x_bw.png">https://oxmond.com/download/tutorials/unity/oxmond_x_bw.png</a></p>
<p>✅ <strong>Free Assets from the Unity Assets Store:</strong><br />
<a href="https://assetstore.unity.com/lists/top-free-packages-13201?aid=1100l4p9k">https://assetstore.unity.com/lists/top-free-packages-13201?aid=1100l4p9k</a></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>
<p>The post <a rel="nofollow" href="https://oxmond.com/how-to-make-an-object-glow-in-unity/">How To Make An Object Glow in Unity? (DEPRICATED)</a> appeared first on <a rel="nofollow" href="https://oxmond.com">Oxmond Technology</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://oxmond.com/how-to-make-an-object-glow-in-unity/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How To Drag and Drop a 2D Object</title>
		<link>https://oxmond.com/how-to-drag-and-drop-a-2d-object/</link>
					<comments>https://oxmond.com/how-to-drag-and-drop-a-2d-object/#comments</comments>
		
		<dc:creator><![CDATA[Oxmond Technology]]></dc:creator>
		<pubDate>Sun, 18 Aug 2019 19:32:12 +0000</pubDate>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Unity]]></category>
		<category><![CDATA[2D]]></category>
		<category><![CDATA[Beginner Tutorial - Unity 2019]]></category>
		<category><![CDATA[coding pirates]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[drag]]></category>
		<category><![CDATA[drag and drop]]></category>
		<category><![CDATA[drag and drop example]]></category>
		<category><![CDATA[drag gameobject with mouse]]></category>
		<category><![CDATA[drop]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[free lesson]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[game object]]></category>
		<category><![CDATA[gameobject]]></category>
		<category><![CDATA[Hans Oxmond]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[instruction]]></category>
		<category><![CDATA[learn]]></category>
		<category><![CDATA[mouse]]></category>
		<category><![CDATA[object]]></category>
		<category><![CDATA[Oxmond Unity Tutorials]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[sprite]]></category>
		<category><![CDATA[target]]></category>
		<category><![CDATA[tip]]></category>
		<category><![CDATA[trick]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[unity 2019]]></category>
		<category><![CDATA[Unity3d]]></category>
		<category><![CDATA[video games]]></category>
		<guid isPermaLink="false">https://oxmond.com/?p=501</guid>

					<description><![CDATA[<p>Learn how to drag a 2D object with the mouse. In this tutorial we will create at general drag and drop script you can use on any sprite.  ❤️ Subscribe to Oxmond Tutorials. Stay ahead of the game: https://bit.ly/SubscribeOxmondTutorials ✅ Download the free Japanese Dishes...</p>
<p>The post <a rel="nofollow" href="https://oxmond.com/how-to-drag-and-drop-a-2d-object/">How To Drag and Drop a 2D Object</a> appeared first on <a rel="nofollow" href="https://oxmond.com">Oxmond Technology</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><span style="font-weight: 400;">Learn how to drag a 2D object with the mouse. In this tutorial we will create at general drag and drop script you can use on any sprite. </span></p>
<hr />
<p><span style="font-weight: 400;">❤️ <strong>Subscribe to Oxmond Tutorials. Stay ahead of the game:</strong></span><span style="font-weight: 400;"><br />
</span><a href="https://bit.ly/SubscribeOxmondTutorials"><span style="font-weight: 400;">https://bit.ly/SubscribeOxmondTutorials</span></a></p>
<p><span style="font-weight: 400;"> ✅ <strong>Download the free Japanese Dishes sprites here:</strong></span><span style="font-weight: 400;"><br />
</span><a href="https://assetstore.unity.com/packages/2d/textures-materials/food/japanese-dishes-82383?aid=1100l4p9k"><span style="font-weight: 400;">https://assetstore.unity.com/packages/2d/textures-materials/food/japanese-dishes-82383?aid=1100l4p9k </span></a></p>
<p><span style="font-weight: 400;"><strong>✅ Other Free Assets in the Unity Assets Store:<br />
</strong></span><a href="https://assetstore.unity.com/lists/top-free-packages-13201?aid=1100l4p9k"><span style="font-weight: 400;">https://assetstore.unity.com/lists/top-free-packages-13201?aid=1100l4p9k </span></a></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>The DragAndDrop script:</strong></p>
<pre>/*
   .-------.                             .--.    .-------.     .--.            .--.     .--.        
   |       |--.--.--------.-----.-----.--|  |    |_     _|--.--|  |_.-----.----|__|---.-|  |-----.
   |   -   |_   _|        |  _  |     |  _  |      |   | |  |  |   _|  _  |   _|  |  _  |  |__ --|
   |_______|__.__|__|__|__|_____|__|__|_____|      |___| |_____|____|_____|__| |__|___._|__|_____|
   © 2019 OXMOND / www.oxmond.com 
*/

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class DragAndDrop : MonoBehaviour
{

    private bool isDragging;

    public void OnMouseDown()
    {
        isDragging = true;
    }

    public void OnMouseUp()
    {
        isDragging = false;
    }

    void Update()
    {
        if (isDragging) {
            Vector2 mousePosition = Camera.main.ScreenToWorldPoint(Input.mousePosition) - transform.position;
            transform.Translate(mousePosition);
        }
    }
}
</pre>
<p>The post <a rel="nofollow" href="https://oxmond.com/how-to-drag-and-drop-a-2d-object/">How To Drag and Drop a 2D Object</a> appeared first on <a rel="nofollow" href="https://oxmond.com">Oxmond Technology</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://oxmond.com/how-to-drag-and-drop-a-2d-object/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
			</item>
		<item>
		<title>How to change the cursor in Unity</title>
		<link>https://oxmond.com/how-to-change-the-cursor-in-unity/</link>
					<comments>https://oxmond.com/how-to-change-the-cursor-in-unity/#respond</comments>
		
		<dc:creator><![CDATA[Oxmond Technology]]></dc:creator>
		<pubDate>Wed, 14 Aug 2019 19:43:51 +0000</pubDate>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Unity]]></category>
		<category><![CDATA[beginner]]></category>
		<category><![CDATA[change]]></category>
		<category><![CDATA[cursor]]></category>
		<category><![CDATA[cursor change]]></category>
		<category><![CDATA[cursor sprite]]></category>
		<category><![CDATA[cursor visible]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[hidden]]></category>
		<category><![CDATA[hide]]></category>
		<category><![CDATA[How To Change The Cursor In Unity]]></category>
		<category><![CDATA[intermediate]]></category>
		<category><![CDATA[learn]]></category>
		<category><![CDATA[lesson]]></category>
		<category><![CDATA[look]]></category>
		<category><![CDATA[mouse]]></category>
		<category><![CDATA[mouse look]]></category>
		<category><![CDATA[Oxmond Unity Tutorials]]></category>
		<category><![CDATA[sprite]]></category>
		<category><![CDATA[stream]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[unity 2019]]></category>
		<category><![CDATA[Unity3d]]></category>
		<category><![CDATA[Unity3D 2019 Beginner Tutorial]]></category>
		<category><![CDATA[video games]]></category>
		<category><![CDATA[videos]]></category>
		<category><![CDATA[visible]]></category>
		<guid isPermaLink="false">https://oxmond.com/?p=477</guid>

					<description><![CDATA[<p>How to change the cursor in Unity! In this tutorial we will have a close look at the mouse. How to hide and show the cursor, and how to change the cursor sprite from a script. ❤️ Subscribe to Oxmond Tutorials. Stay ahead of the...</p>
<p>The post <a rel="nofollow" href="https://oxmond.com/how-to-change-the-cursor-in-unity/">How to change the cursor in Unity</a> appeared first on <a rel="nofollow" href="https://oxmond.com">Oxmond Technology</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><span style="font-weight: 400;">How to change the cursor in Unity! </span><span style="font-weight: 400;"><br />
</span><span style="font-weight: 400;">In this tutorial we will have a close look at the mouse. How to hide and show the cursor, and how to change the cursor sprite from a script.</span></p>
<hr />
<p>❤️ <strong>Subscribe to Oxmond Tutorials. Stay ahead of the game:</strong><br />
<a href="https://bit.ly/SubscribeOxmondTutorials">https://bit.ly/SubscribeOxmondTutorials</a></p>
<p>✅<strong> Get the free Pixel Cursors here:</strong><br />
<a href="https://assetstore.unity.com/packages/2d/gui/icons/pixel-cursors-109256?aid=1100l4p9k">https://assetstore.unity.com/packages/2d/gui/icons/pixel-cursors-109256?aid=1100l4p9k</a></p>
<p>✅ <strong>Free Assets at the Unity Assets Store:</strong><br />
<a href="https://assetstore.unity.com/lists/top-free-packages-13201?aid=1100l4p9k">https://assetstore.unity.com/lists/top-free-packages-13201?aid=1100l4p9k </a></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>
<p><strong>Script:</strong></p>
<pre>/*

   .-------.                             .--.    .-------.     .--.            .--.     .--.        
   |       |--.--.--------.-----.-----.--|  |    |_     _|--.--|  |_.-----.----|__|---.-|  |-----.
   |   -   |_   _|        |  _  |     |  _  |      |   | |  |  |   _|  _  |   _|  |  _  |  |__ --|
   |_______|__.__|__|__|__|_____|__|__|_____|      |___| |_____|____|_____|__| |__|___._|__|_____|
   © 2019 OXMOND / www.oxmond.com 

*/

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class Gem : MonoBehaviour
{

    public Texture2D cursorArrow;
    public Texture2D cursorPickaxe;

    void Start()
    {
        // Cursor.visible = false;
        Cursor.SetCursor(cursorArrow, Vector2.zero, CursorMode.ForceSoftware);
    }

    void OnMouseEnter()
    {
        Cursor.SetCursor(cursorPickaxe, Vector2.zero, CursorMode.ForceSoftware);
    }

    void OnMouseExit()
    {
        Cursor.SetCursor(cursorArrow, Vector2.zero, CursorMode.ForceSoftware);
    }

}

</pre>
<p>The post <a rel="nofollow" href="https://oxmond.com/how-to-change-the-cursor-in-unity/">How to change the cursor in Unity</a> appeared first on <a rel="nofollow" href="https://oxmond.com">Oxmond Technology</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://oxmond.com/how-to-change-the-cursor-in-unity/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Start, Stop and Reset a Timer with C# scripting</title>
		<link>https://oxmond.com/start-stop-and-reset-a-timer-with-c-scripting-unity-2018-intermediate-tutorial/</link>
					<comments>https://oxmond.com/start-stop-and-reset-a-timer-with-c-scripting-unity-2018-intermediate-tutorial/#comments</comments>
		
		<dc:creator><![CDATA[Oxmond Technology]]></dc:creator>
		<pubDate>Tue, 20 Nov 2018 10:16:42 +0000</pubDate>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Unity]]></category>
		<category><![CDATA[2018]]></category>
		<category><![CDATA[beginners]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[change]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[game making]]></category>
		<category><![CDATA[lesson]]></category>
		<category><![CDATA[scripting 2d]]></category>
		<category><![CDATA[sprite]]></category>
		<category><![CDATA[sprites]]></category>
		<category><![CDATA[stopwatch]]></category>
		<category><![CDATA[timer]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[watch]]></category>
		<guid isPermaLink="false">https://oxmond.com/?p=291</guid>

					<description><![CDATA[<p>How to create a Timer with scripting (C#) in Unity 2018. Learn to start, stop and reset the timer using UI buttons in this Intermediate tutorial. Direct links to the free font and background below. ❤️ Subscribe to Oxmond Tutorials:https://bit.ly/SubscribeOxmondTutorials ✅ Download the Digital 7...</p>
<p>The post <a rel="nofollow" href="https://oxmond.com/start-stop-and-reset-a-timer-with-c-scripting-unity-2018-intermediate-tutorial/">Start, Stop and Reset a Timer with C# scripting</a> appeared first on <a rel="nofollow" href="https://oxmond.com">Oxmond Technology</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><span style="font-weight: 400;">How to create a Timer with scripting (C#) in Unity 2018. Learn to start, stop and reset the timer using UI buttons in this Intermediate tutorial. Direct links to the free font and background below.<br /></span></p>
<hr />
<p><span style="font-weight: 400;">❤️ <strong>Subscribe to Oxmond Tutorials:</strong><br /><a href="https://bit.ly/SubscribeOxmondTutorials">https://bit.ly/SubscribeOxmondTutorials</a><br /></span></p>
<p>✅ <strong>Download the Digital 7 font here:</strong><br /><a href="https://www.dafont.com/digital-7.font"><span style="font-weight: 400;">https://www.dafont.com/digital-7.font</span></a></p>
<!-- /wp:paragraph -->
<p><span style="font-weight: 400;">✅ <strong>Timer background asset based on this file by Fabio Basile:</strong><br /></span><a href="https://all-free-download.com/free-psd/download/timer-widget-interface-with-blue-digital-numbers_175188.html">https://all-free-download.com/free-psd/download/timer-widget-interface-with-blue-digital-numbers_175188.html</a></p>
<p><span style="font-weight: 400;">✅ <strong>Other Free Asset Packages at the Unity Assets Store:</strong><br /></span><a href="https://assetstore.unity.com/lists/top-free-packages-13201?aid=1100l4p9k&amp;utm_source=aff">https://assetstore.unity.com/lists/top-free-packages-13201</a></p>
<p>😷👕 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: <br /><a href="https://shop.oxmond.com/discount/OXMONDSALE">https://shop.oxmond.com/discount/OXMONDSALE</a><br /><br /></p>
<hr />

<!-- wp:paragraph -->
<p><strong>Timer script:</strong></p>
<!-- /wp:paragraph -->

<!-- wp:preformatted -->
<pre class="wp-block-preformatted">/* .-------.                             .--.    .-------.     .--.            .--.     .--.        
   |       |--.--.--------.-----.-----.--|  |    |_     _|--.--|  |_.-----.----|__|---.-|  |-----.
   |   -   |_   _|        |  _  |     |  _  |      |   | |  |  |   _|  _  |   _|  |  _  |  |__ --|
   |_______|__.__|__|__|__|_____|__|__|_____|      |___| |_____|____|_____|__| |__|___._|__|_____|
   © OXMOND / www.oxmond.com */

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;

public class Timer : MonoBehaviour {

    public Text timerMinutes;
    public Text timerSeconds;
    public Text timerSeconds100;

    private float startTime;
    private float stopTime;
    private float timerTime;
    private bool isRunning = false;

	// Use this for initialization
	void Start () {
        TimerReset();
    }

    public void TimerStart() {
        if (!isRunning) {
            print("START");
            isRunning = true;
            startTime = Time.time;       
        }
    }

    public void TimerStop()
    {
        if (isRunning)
        {
            print("STOP");
            isRunning = false;
            stopTime = timerTime;
        }
    }

    public void TimerReset()
    {
        print("RESET");
        stopTime = 0;
        isRunning = false;
        timerMinutes.text = timerSeconds.text = timerSeconds100.text = "00";
    }

    // Update is called once per frame
    void Update () {
        timerTime = stopTime + (Time.time - startTime);
        int minutesInt = (int)timerTime / 60;
        int secondsInt = (int)timerTime % 60;
        int seconds100Int = (int)(Mathf.Floor((timerTime - (secondsInt + minutesInt * 60)) * 100));

        if (isRunning)
        {
            timerMinutes.text = (minutesInt &lt; 10) ? "0" + minutesInt : minutesInt.ToString();
            timerSeconds.text = (secondsInt &lt; 10) ? "0" + secondsInt : secondsInt.ToString();
            timerSeconds100.text = (seconds100Int &lt; 10) ? "0" + seconds100Int : seconds100Int.ToString();
        }
    }
}

</pre>
<!-- /wp:preformatted --><p>The post <a rel="nofollow" href="https://oxmond.com/start-stop-and-reset-a-timer-with-c-scripting-unity-2018-intermediate-tutorial/">Start, Stop and Reset a Timer with C# scripting</a> appeared first on <a rel="nofollow" href="https://oxmond.com">Oxmond Technology</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://oxmond.com/start-stop-and-reset-a-timer-with-c-scripting-unity-2018-intermediate-tutorial/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>How to move and FLIP a 2D sprite with the arrow keys</title>
		<link>https://oxmond.com/how-to-move-and-flip-a-2d-sprite-with-the-arrow-keys-unity-2018-tutorial-for-beginners/</link>
					<comments>https://oxmond.com/how-to-move-and-flip-a-2d-sprite-with-the-arrow-keys-unity-2018-tutorial-for-beginners/#comments</comments>
		
		<dc:creator><![CDATA[Oxmond Technology]]></dc:creator>
		<pubDate>Tue, 20 Nov 2018 08:34:17 +0000</pubDate>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Unity]]></category>
		<category><![CDATA[2018]]></category>
		<category><![CDATA[arrow keys]]></category>
		<category><![CDATA[beginners]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[change]]></category>
		<category><![CDATA[character]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[coding pirates]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[flip]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[game making]]></category>
		<category><![CDATA[lesson]]></category>
		<category><![CDATA[move]]></category>
		<category><![CDATA[scripting 2d]]></category>
		<category><![CDATA[sprite]]></category>
		<category><![CDATA[sprites]]></category>
		<category><![CDATA[tutorials]]></category>
		<guid isPermaLink="false">https://oxmond.com/?p=271</guid>

					<description><![CDATA[<p>How to move and flip a 2D character with scripting (C#) in Unity 2018, using the left and right arrows keys to move the player. Unity beginner tutorial. ❤️ Subscribe to Oxmond Tutorials:https://bit.ly/SubscribeOxmondTutorials✅ Download the free Sunny Land 2D assets here:https://assetstore.unity.com/packages/2d/characters/sunny-land-103349✅ Other free packages at...</p>
<p>The post <a rel="nofollow" href="https://oxmond.com/how-to-move-and-flip-a-2d-sprite-with-the-arrow-keys-unity-2018-tutorial-for-beginners/">How to move and FLIP a 2D sprite with the arrow keys</a> appeared first on <a rel="nofollow" href="https://oxmond.com">Oxmond Technology</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>How to move and flip a 2D character with scripting (C#) in Unity 2018, using the left and right arrows keys to move the player. Unity beginner tutorial.</p>
<hr />


<p><span style="font-weight: 400;">❤️ <strong>Subscribe to Oxmond Tutorials:</strong></span><span style="font-weight: 400;"><br /></span><a href="https://bit.ly/SubscribeOxmondTutorials"><span style="font-weight: 400;">https://bit.ly/SubscribeOxmondTutorials</span></a><br /><br />✅ <strong>Download the free Sunny Land 2D assets here:</strong><br /><a href="https://assetstore.unity.com/packages/2d/characters/sunny-land-103349?aid=1100l4p9k">https://assetstore.unity.com/packages/2d/characters/sunny-land-103349</a><br /><br /><strong>✅ Other free packages at the Unity Assets Store:</strong><br /><a href="https://assetstore.unity.com/lists/top-free-packages-13201?aid=1100l4p9k">https://assetstore.unity.com/lists/top-free-packages-13201</a></p>
<p>😷👕 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: <br /><a href="https://shop.oxmond.com/discount/OXMONDSALE">https://shop.oxmond.com/discount/OXMONDSALE</a></p>




<hr />
<p>● Character script (from video):</p>



<pre>/* .-------.                             .--.    .-------.     .--.            .--.     .--.        
   |       |--.--.--------.-----.-----.--|  |    |_     _|--.--|  |_.-----.----|__|---.-|  |-----.
   |   -   |_   _|        |  _  |     |  _  |      |   | |  |  |   _|  _  |   _|  |  _  |  |__ --|
   |_______|__.__|__|__|__|_____|__|__|_____|      |___| |_____|____|_____|__| |__|___._|__|_____|
   © OXMOND / www.oxmond.com */

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class Player : MonoBehaviour {

	void Update () {

        // Move the Character:
        transform.Translate(Input.GetAxis("Horizontal")* 15f * Time.deltaTime, 0f, 0f);

        // Flip the Character:
        Vector3 characterScale = transform.localScale;
        if (Input.GetAxis("Horizontal") &lt; 0) {
            characterScale.x = -10;
        }
        if (Input.GetAxis("Horizontal") &gt; 0)
        {
            characterScale.x = 10;
        }
        transform.localScale = characterScale;
    }
}
</pre>

<p>● Character script (updated):</p>
<!-- /wp:paragraph -->

<!-- wp:html -->
<pre>using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class Player : MonoBehaviour {

    Vector3 characterScale;
    float characterScaleX;

    void Start()
    {
        characterScale = transform.localScale;
        characterScaleX = characterScale.x;
    }

    void Update () {

        // Move the Character:
        transform.Translate(Input.GetAxis("Horizontal") * 15f * Time.deltaTime, 0f, 0f);

        // Flip the Character:
        if (Input.GetAxis("Horizontal") &lt; 0) {
            characterScale.x = -characterScaleX;
        }
        if (Input.GetAxis("Horizontal") &gt; 0)
        {
            characterScale.x = characterScaleX;
        }
        transform.localScale = characterScale;

    }
}

</pre>
<!-- /wp:html -->
<p>&nbsp;</p><p>The post <a rel="nofollow" href="https://oxmond.com/how-to-move-and-flip-a-2d-sprite-with-the-arrow-keys-unity-2018-tutorial-for-beginners/">How to move and FLIP a 2D sprite 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-move-and-flip-a-2d-sprite-with-the-arrow-keys-unity-2018-tutorial-for-beginners/feed/</wfw:commentRss>
			<slash:comments>12</slash:comments>
		
		
			</item>
		<item>
		<title>How to change a sprite image with script</title>
		<link>https://oxmond.com/how-to-change-a-sprite-image-with-script-unity-2018-tutorial-for-beginners/</link>
					<comments>https://oxmond.com/how-to-change-a-sprite-image-with-script-unity-2018-tutorial-for-beginners/#respond</comments>
		
		<dc:creator><![CDATA[Oxmond Technology]]></dc:creator>
		<pubDate>Tue, 20 Nov 2018 01:43:28 +0000</pubDate>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Unity]]></category>
		<category><![CDATA[2018]]></category>
		<category><![CDATA[beginners]]></category>
		<category><![CDATA[bird]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[change]]></category>
		<category><![CDATA[change image]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[coding pirates]]></category>
		<category><![CDATA[dead]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[game making]]></category>
		<category><![CDATA[lesson]]></category>
		<category><![CDATA[scripting 2d]]></category>
		<category><![CDATA[sprite]]></category>
		<category><![CDATA[sprites]]></category>
		<category><![CDATA[tutorials]]></category>
		<guid isPermaLink="false">https://demo.oxmond.com/?p=247</guid>

					<description><![CDATA[<p>Learn to change a 2D sprite image from script (C#) in Unity 2018. Unity beginner tutorial. ❤️ Subscribe to Oxmond Tutorials: https://bit.ly/SubscribeOxmondTutorials ✅ Download 2D Assets Here: https://assetstore.unity.com/packages/essentials/asset-packs/ ✅ Free Packages at the Unity Assets Store: https://assetstore.unity.com/lists/top-free-packages-13201 😷👕 Need a face mask / developer T-shirt?...</p>
<p>The post <a rel="nofollow" href="https://oxmond.com/how-to-change-a-sprite-image-with-script-unity-2018-tutorial-for-beginners/">How to change a sprite image with script</a> appeared first on <a rel="nofollow" href="https://oxmond.com">Oxmond Technology</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Learn to change a 2D sprite image from script (C#) in Unity 2018. Unity beginner tutorial.</p>
<hr />
<p><span style="font-weight: 400;">❤️ <strong>Subscribe to Oxmond Tutorials:</strong></span><span style="font-weight: 400;"><br />
</span><a href="https://bit.ly/SubscribeOxmondTutorials"><span style="font-weight: 400;">https://bit.ly/SubscribeOxmondTutorials</span></a></p>
<p>✅ <strong>Download 2D Assets Here:</strong><br />
<a href="https://assetstore.unity.com/packages/essentials/asset-packs/2d-sprites-pack-73728?aid=1100l4p9k">https://assetstore.unity.com/packages/essentials/asset-packs/</a></p>
<p>✅ <strong>Free Packages at the Unity Assets Store:</strong><br />
<a href="https://assetstore.unity.com/lists/top-free-packages-13201?aid=1100l4p9k">https://assetstore.unity.com/lists/top-free-packages-13201</a></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>Bird script:</strong></p>
<pre class="EnlighterJSRAW" data-enlighter-language="null">/* .-------.                             .--.    .-------.     .--.            .--.     .--.        
   |       |--.--.--------.-----.-----.--|  |    |_     _|--.--|  |_.-----.----|__|---.-|  |-----.
   |   -   |_   _|        |  _  |     |  _  |      |   | |  |  |   _|  _  |   _|  |  _  |  |__ --|
   |_______|__.__|__|__|__|_____|__|__|_____|      |___| |_____|____|_____|__| |__|___._|__|_____|
   © OXMOND / www.oxmond.com */

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class Bird : MonoBehaviour
{

    public Sprite DeadBird;

    void Update()
    {

        if (transform.position.y &gt;= -4.53)
        {
            transform.Translate(0f, -0.25f, 0f);
        }
        else
        {
            this.gameObject.GetComponent&lt;SpriteRenderer&gt;().sprite = DeadBird;
        }
    }
}

</pre>
<p>The post <a rel="nofollow" href="https://oxmond.com/how-to-change-a-sprite-image-with-script-unity-2018-tutorial-for-beginners/">How to change a sprite image with script</a> appeared first on <a rel="nofollow" href="https://oxmond.com">Oxmond Technology</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://oxmond.com/how-to-change-a-sprite-image-with-script-unity-2018-tutorial-for-beginners/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
