<?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>tip Archives - Oxmond Technology</title>
	<atom:link href="https://oxmond.com/tag/tip/feed/" rel="self" type="application/rss+xml" />
	<link>https://oxmond.com</link>
	<description>IT Development</description>
	<lastBuildDate>Wed, 18 Nov 2020 04:11:55 +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>Glowing Orb Visual Effects VFX</title>
		<link>https://oxmond.com/glowing-orb-visual-effects-vfx/</link>
					<comments>https://oxmond.com/glowing-orb-visual-effects-vfx/#respond</comments>
		
		<dc:creator><![CDATA[Oxmond Technology]]></dc:creator>
		<pubDate>Mon, 23 Sep 2019 18:50:42 +0000</pubDate>
				<category><![CDATA[Intermediate]]></category>
		<category><![CDATA[Special Effect]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[asset]]></category>
		<category><![CDATA[assets]]></category>
		<category><![CDATA[ball]]></category>
		<category><![CDATA[bitmap]]></category>
		<category><![CDATA[bloom]]></category>
		<category><![CDATA[circle]]></category>
		<category><![CDATA[coding pirates]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[effect]]></category>
		<category><![CDATA[emission]]></category>
		<category><![CDATA[energy]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[game effects vfx]]></category>
		<category><![CDATA[glowing]]></category>
		<category><![CDATA[glowing orb effect]]></category>
		<category><![CDATA[gradient. light]]></category>
		<category><![CDATA[halo]]></category>
		<category><![CDATA[Hans Oxmond]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[learn]]></category>
		<category><![CDATA[lesson]]></category>
		<category><![CDATA[materials]]></category>
		<category><![CDATA[orb]]></category>
		<category><![CDATA[Oxmond Unity Tutorials]]></category>
		<category><![CDATA[pack]]></category>
		<category><![CDATA[particles]]></category>
		<category><![CDATA[png]]></category>
		<category><![CDATA[psd]]></category>
		<category><![CDATA[settings]]></category>
		<category><![CDATA[sfx]]></category>
		<category><![CDATA[special]]></category>
		<category><![CDATA[sphere]]></category>
		<category><![CDATA[texture]]></category>
		<category><![CDATA[tip]]></category>
		<category><![CDATA[transparent]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[unity 3d effect tutorial]]></category>
		<category><![CDATA[unity glowing orb effect tutorial]]></category>
		<category><![CDATA[Unity3d]]></category>
		<category><![CDATA[vfx]]></category>
		<category><![CDATA[video games]]></category>
		<category><![CDATA[visual]]></category>
		<guid isPermaLink="false">https://oxmond.com/?p=617</guid>

					<description><![CDATA[<p>Special effect tutorial! How to create a glowing orb using Unity&#8217;s particle effects! In this tutorial we build a blue electric sphere visual effect by combining different types of particles. ❤️ Subscribe to Oxmond Tutorials YouTube Channel. New tutorials every day! Stay tuned! https://bit.ly/SubscribeOxmondTutorials 🔔...</p>
<p>The post <a rel="nofollow" href="https://oxmond.com/glowing-orb-visual-effects-vfx/">Glowing Orb Visual Effects VFX</a> appeared first on <a rel="nofollow" href="https://oxmond.com">Oxmond Technology</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Special effect tutorial! How to create a glowing orb using Unity&#8217;s particle effects! In this tutorial we build a blue electric sphere visual effect by combining different types of particles.</p>
<hr />
<p>❤️ Subscribe to Oxmond Tutorials YouTube Channel. New tutorials every day! Stay tuned!<br />
<a href="https://bit.ly/SubscribeOxmondTutorials">https://bit.ly/SubscribeOxmondTutorials</a></p>
<p>🔔 &#8211; and don&#8217;t forget hit that little bell to turn on notifications!</p>
<hr />
<p>✅ Download the bitmaps for this tutorial:<br />
<a href="https://oxmond.com/download/tutorials/unity/glowing_orb_bitmaps.zip">https://oxmond.com/download/tutorials/unity/glowing_orb_bitmaps.zip</a></p>
<p>✅ Download free assets from the Unity Assets Store for your game:<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>The post <a rel="nofollow" href="https://oxmond.com/glowing-orb-visual-effects-vfx/">Glowing Orb Visual Effects VFX</a> appeared first on <a rel="nofollow" href="https://oxmond.com">Oxmond Technology</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://oxmond.com/glowing-orb-visual-effects-vfx/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to use real time Post-Processing in Unity</title>
		<link>https://oxmond.com/how-to-use-real-time-post-processing-in-unity/</link>
					<comments>https://oxmond.com/how-to-use-real-time-post-processing-in-unity/#respond</comments>
		
		<dc:creator><![CDATA[Oxmond Technology]]></dc:creator>
		<pubDate>Wed, 18 Sep 2019 20:15:57 +0000</pubDate>
				<category><![CDATA[Beginner]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Unity]]></category>
		<category><![CDATA[2019]]></category>
		<category><![CDATA[alpha]]></category>
		<category><![CDATA[ambient]]></category>
		<category><![CDATA[ambient occlusion]]></category>
		<category><![CDATA[beginner]]></category>
		<category><![CDATA[Beginner Tutorial - Unity 2019]]></category>
		<category><![CDATA[bloom]]></category>
		<category><![CDATA[blur]]></category>
		<category><![CDATA[change]]></category>
		<category><![CDATA[coding pirates]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[color grade]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[effect]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[grade]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[Hans Oxmond]]></category>
		<category><![CDATA[how]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[How to use Post-Processing in Unity]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[learn]]></category>
		<category><![CDATA[lesson]]></category>
		<category><![CDATA[lighting]]></category>
		<category><![CDATA[manager]]></category>
		<category><![CDATA[occlusion]]></category>
		<category><![CDATA[Oxmond Unity Tutorials]]></category>
		<category><![CDATA[package]]></category>
		<category><![CDATA[parameter]]></category>
		<category><![CDATA[polish]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[post processing from the package manager]]></category>
		<category><![CDATA[Post Processing Tutorial]]></category>
		<category><![CDATA[post-processing]]></category>
		<category><![CDATA[processing]]></category>
		<category><![CDATA[shader]]></category>
		<category><![CDATA[stack]]></category>
		<category><![CDATA[tip]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[Unity3d]]></category>
		<category><![CDATA[v2]]></category>
		<category><![CDATA[video games]]></category>
		<category><![CDATA[vignette]]></category>
		<guid isPermaLink="false">https://oxmond.com/?p=613</guid>

					<description><![CDATA[<p>✅ How to install and use the awesome Unity Post Processing package. This is a must. See this tutorial before making any 3D games  ✅ Download the free Elf Character from the tutorial: https://assetstore.unity.com/packages/3d/characters/humanoids/character-elf-114445?aid=1100l4p9k  🧡 Subscribe to Oxmond Tutorials. Stay tuned! https://bit.ly/SubscribeOxmondTutorials 😷👕 Need a...</p>
<p>The post <a rel="nofollow" href="https://oxmond.com/how-to-use-real-time-post-processing-in-unity/">How to use real time Post-Processing 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 install and use the awesome Unity Post Processing package. This is a must. See this tutorial before making any 3D games </span></p>
<hr />
<p><strong>✅ Download the free Elf Character from the tutorial:</strong><br />
<a href="https://assetstore.unity.com/packages/3d/characters/humanoids/character-elf-114445?aid=1100l4p9k">https://assetstore.unity.com/packages/3d/characters/humanoids/character-elf-114445?aid=1100l4p9k </a></p>
<hr />
<p><strong>🧡 Subscribe to Oxmond Tutorials. Stay tuned!</strong><br />
<a href="https://bit.ly/SubscribeOxmondTutorials">https://bit.ly/SubscribeOxmondTutorials</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>✅ <strong>Download free assets from the Unity Assets Store for your game:</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>The post <a rel="nofollow" href="https://oxmond.com/how-to-use-real-time-post-processing-in-unity/">How to use real time Post-Processing 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-use-real-time-post-processing-in-unity/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to read JSON data from a web service in C#</title>
		<link>https://oxmond.com/how-to-read-json-data-from-a-web-service-in-c/</link>
					<comments>https://oxmond.com/how-to-read-json-data-from-a-web-service-in-c/#comments</comments>
		
		<dc:creator><![CDATA[Oxmond Technology]]></dc:creator>
		<pubDate>Tue, 17 Sep 2019 13:05:52 +0000</pubDate>
				<category><![CDATA[C# Lesson]]></category>
		<category><![CDATA[Intermediate]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Unity]]></category>
		<category><![CDATA[2019]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[coding pirates]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[file]]></category>
		<category><![CDATA[get]]></category>
		<category><![CDATA[Hans Oxmond]]></category>
		<category><![CDATA[Henrik Poulsen]]></category>
		<category><![CDATA[how]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[How to get JSON data from a web service in Unity]]></category>
		<category><![CDATA[How to read a JSON file in Unity]]></category>
		<category><![CDATA[How to read JSON data from a web service in C#]]></category>
		<category><![CDATA[import]]></category>
		<category><![CDATA[Import JSON file]]></category>
		<category><![CDATA[json]]></category>
		<category><![CDATA[json file]]></category>
		<category><![CDATA[json list]]></category>
		<category><![CDATA[json object]]></category>
		<category><![CDATA[json parser]]></category>
		<category><![CDATA[jsonobject]]></category>
		<category><![CDATA[jsonutility]]></category>
		<category><![CDATA[learn]]></category>
		<category><![CDATA[lesson]]></category>
		<category><![CDATA[list]]></category>
		<category><![CDATA[load]]></category>
		<category><![CDATA[loading]]></category>
		<category><![CDATA[Oxmond Unity Tutorials]]></category>
		<category><![CDATA[parse]]></category>
		<category><![CDATA[read]]></category>
		<category><![CDATA[reading]]></category>
		<category><![CDATA[service]]></category>
		<category><![CDATA[simple]]></category>
		<category><![CDATA[SimpleJSON]]></category>
		<category><![CDATA[tip]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[Unity3d]]></category>
		<category><![CDATA[video games]]></category>
		<category><![CDATA[web]]></category>
		<guid isPermaLink="false">https://oxmond.com/?p=608</guid>

					<description><![CDATA[<p>How to read a JSON data from a web service in Unity. This Tutorial is about reading JSON data. We will build a little application build on a JSON webservice. ✅ Download the free SimpleJSON parser: https://github.com/HenrikPoulsen/SimpleJSON ✅ The free geoplugin webservice: http://www.geoplugin.net/json.gp?ip=213.22.22.98 ❤️ Subscribe...</p>
<p>The post <a rel="nofollow" href="https://oxmond.com/how-to-read-json-data-from-a-web-service-in-c/">How to read JSON data from a web service in C#</a> appeared first on <a rel="nofollow" href="https://oxmond.com">Oxmond Technology</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>How to read a JSON data from a web service in Unity. This Tutorial is about reading JSON data. We will build a little application build on a JSON webservice.</p>
<hr />
<p>✅ Download the free SimpleJSON parser:<br />
<a href="https://github.com/HenrikPoulsen/SimpleJSON">https://github.com/HenrikPoulsen/SimpleJSON</a></p>
<p>✅ The free geoplugin webservice:<br />
<a href="http://www.geoplugin.net/json.gp?ip=213.22.22.98">http://www.geoplugin.net/json.gp?ip=213.22.22.98</a></p>
<hr />
<p>❤️ Subscribe to Oxmond Tutorials. New tutorials every day! Stay tuned!<br />
<a href="https://bit.ly/SubscribeOxmondTutorials">https://bit.ly/SubscribeOxmondTutorials</a></p>
<p>🔔 Remember to hit that little bell to turn on notifications!</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>✅ Download free assets from the Unity Assets Store for your game:<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>
<hr />
<p><strong>The LoadJSON script:</strong></p>
<pre>/*

   .-------.                             .--.    .-------.     .--.            .--.     .--.        
   |       |--.--.--------.-----.-----.--|  |    |_     _|--.--|  |_.-----.----|__|---.-|  |-----.
   |   -   |_   _|        |  _  |     |  _  |      |   | |  |  |   _|  _  |   _|  |  _  |  |__ --|
   |_______|__.__|__|__|__|_____|__|__|_____|      |___| |_____|____|_____|__| |__|___._|__|_____|
   © 2019 OXMOND / www.oxmond.com 

*/

using System.Collections;
using UnityEngine;
using SimpleJSON;
using UnityEngine.Networking;
using TMPro;

public class LoadJSON : MonoBehaviour
{

    public TMP_InputField inputTxt;
    public TMP_Text countryTxt;
    public TMP_Text continentTxt;

    public void GetJsonData()
    {
        StartCoroutine(RequestWebService());
    }

    IEnumerator RequestWebService()
    {
        string getDataUrl = "http://www.geoplugin.net/json.gp?ip=" + inputTxt.text;
        print(getDataUrl);

        using (UnityWebRequest webData = UnityWebRequest.Get(getDataUrl))
        {

            yield return webData.SendWebRequest();
            if (webData.isNetworkError || webData.isHttpError)
            {
                print("---------------- ERROR ----------------");
                print(webData.error);
            }
            else
            {
                if (webData.isDone)
                {
                    JSONNode jsonData = JSON.Parse(System.Text.Encoding.UTF8.GetString(webData.downloadHandler.data));

                    if (jsonData == null)
                    {
                        print("---------------- NO DATA ----------------");
                    }
                    else
                    {
                        print("---------------- JSON DATA ----------------");
                        print("jsonData.Count:" + jsonData.Count);
                        countryTxt.text = jsonData["geoplugin_countryName"];
                        continentTxt.text = jsonData["geoplugin_continentName"];
                    }
                }
            }
        }
    }
}

</pre>
<p>The post <a rel="nofollow" href="https://oxmond.com/how-to-read-json-data-from-a-web-service-in-c/">How to read JSON data from a web service in C#</a> appeared first on <a rel="nofollow" href="https://oxmond.com">Oxmond Technology</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://oxmond.com/how-to-read-json-data-from-a-web-service-in-c/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>Git Integration! Setting Up Unity with Git, SourceTree &#038; Bitbucket</title>
		<link>https://oxmond.com/git-integration-setting-up-unity-with-git-sourcetree-bitbucket/</link>
					<comments>https://oxmond.com/git-integration-setting-up-unity-with-git-sourcetree-bitbucket/#respond</comments>
		
		<dc:creator><![CDATA[Oxmond Technology]]></dc:creator>
		<pubDate>Sun, 08 Sep 2019 12:58:33 +0000</pubDate>
				<category><![CDATA[Intermediate]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Unity]]></category>
		<category><![CDATA[2019]]></category>
		<category><![CDATA[bitbucket]]></category>
		<category><![CDATA[coding pirates]]></category>
		<category><![CDATA[control]]></category>
		<category><![CDATA[developer]]></category>
		<category><![CDATA[Git]]></category>
		<category><![CDATA[Git for Unity Developers]]></category>
		<category><![CDATA[Git Integration! Setting Up Unity with Git]]></category>
		<category><![CDATA[git source control]]></category>
		<category><![CDATA[gitignore]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[Hans Oxmond]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[ignore]]></category>
		<category><![CDATA[improve]]></category>
		<category><![CDATA[improve workflow with Git]]></category>
		<category><![CDATA[integration]]></category>
		<category><![CDATA[learn]]></category>
		<category><![CDATA[lesson]]></category>
		<category><![CDATA[merging]]></category>
		<category><![CDATA[merging unity code]]></category>
		<category><![CDATA[Oxmond Unity Tutorials]]></category>
		<category><![CDATA[projects]]></category>
		<category><![CDATA[repository]]></category>
		<category><![CDATA[settings]]></category>
		<category><![CDATA[setup]]></category>
		<category><![CDATA[source]]></category>
		<category><![CDATA[sourcetree]]></category>
		<category><![CDATA[Sourcetree & Bitbucket]]></category>
		<category><![CDATA[step-by-step]]></category>
		<category><![CDATA[tip]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[unity git setup]]></category>
		<category><![CDATA[Unity3d]]></category>
		<category><![CDATA[version]]></category>
		<category><![CDATA[version control]]></category>
		<category><![CDATA[video games]]></category>
		<category><![CDATA[workflow]]></category>
		<guid isPermaLink="false">https://oxmond.com/?p=602</guid>

					<description><![CDATA[<p>Improve your workflow! Use Git for you Unity project! In this tutorial we set up a new Unity project with Git, Sourcetree and BitBucket. ✅ Download the Sourcetree client: https://www.sourcetreeapp.com/ ❤️ Subscribe to Oxmond Tutorials! Stay ahead of the game! https://bit.ly/SubscribeOxmondTutorials 🔔 Remember to hit...</p>
<p>The post <a rel="nofollow" href="https://oxmond.com/git-integration-setting-up-unity-with-git-sourcetree-bitbucket/">Git Integration! Setting Up Unity with Git, SourceTree &#038; Bitbucket</a> appeared first on <a rel="nofollow" href="https://oxmond.com">Oxmond Technology</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Improve your workflow! Use Git for you Unity project! In this tutorial we set up a new Unity project with Git, Sourcetree and BitBucket.</p>
<p>✅ <strong>Download the Sourcetree client:</strong><br />
<a href="https://www.sourcetreeapp.com/">https://www.sourcetreeapp.com/</a></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>🔔 Remember to hit that little bell to turn on notifications!</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>✅<strong> Download free assets from the Unity Assets Store for your game:</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>&nbsp;</p>
<p>The post <a rel="nofollow" href="https://oxmond.com/git-integration-setting-up-unity-with-git-sourcetree-bitbucket/">Git Integration! Setting Up Unity with Git, SourceTree &#038; Bitbucket</a> appeared first on <a rel="nofollow" href="https://oxmond.com">Oxmond Technology</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://oxmond.com/git-integration-setting-up-unity-with-git-sourcetree-bitbucket/feed/</wfw:commentRss>
			<slash:comments>0</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 Change Scene in Unity</title>
		<link>https://oxmond.com/how-to-change-scene-in-unity/</link>
					<comments>https://oxmond.com/how-to-change-scene-in-unity/#respond</comments>
		
		<dc:creator><![CDATA[Oxmond Technology]]></dc:creator>
		<pubDate>Tue, 27 Aug 2019 11:09:08 +0000</pubDate>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Unity]]></category>
		<category><![CDATA[2019]]></category>
		<category><![CDATA[2D]]></category>
		<category><![CDATA[between]]></category>
		<category><![CDATA[button]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[change]]></category>
		<category><![CDATA[change level]]></category>
		<category><![CDATA[change scene]]></category>
		<category><![CDATA[change scene script]]></category>
		<category><![CDATA[click]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[coding pirates]]></category>
		<category><![CDATA[collision]]></category>
		<category><![CDATA[delay]]></category>
		<category><![CDATA[Hans Oxmond]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[How to Change Scene in Unity]]></category>
		<category><![CDATA[learn]]></category>
		<category><![CDATA[lesson]]></category>
		<category><![CDATA[level]]></category>
		<category><![CDATA[load]]></category>
		<category><![CDATA[manager]]></category>
		<category><![CDATA[multiple]]></category>
		<category><![CDATA[new]]></category>
		<category><![CDATA[next]]></category>
		<category><![CDATA[on button press]]></category>
		<category><![CDATA[Oxmond Unity Tutorials]]></category>
		<category><![CDATA[parameters]]></category>
		<category><![CDATA[press]]></category>
		<category><![CDATA[scene]]></category>
		<category><![CDATA[scene manager]]></category>
		<category><![CDATA[scene transition]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[switch]]></category>
		<category><![CDATA[switch between scenes]]></category>
		<category><![CDATA[switch scene]]></category>
		<category><![CDATA[tip]]></category>
		<category><![CDATA[transition]]></category>
		<category><![CDATA[trigger]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[Unity3d]]></category>
		<category><![CDATA[video games]]></category>
		<guid isPermaLink="false">https://oxmond.com/?p=554</guid>

					<description><![CDATA[<p>How to change scene in Unity! In this tutorial we cover four different scenarios on how to switch scenes: Change Scene on Button Press Change Scene on Collision Switch scenes after time (delay) How to Change Level (scene) AND Keep Your Variables ❤️ Subscribe to...</p>
<p>The post <a rel="nofollow" href="https://oxmond.com/how-to-change-scene-in-unity/">How to Change Scene in Unity</a> appeared first on <a rel="nofollow" href="https://oxmond.com">Oxmond Technology</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><strong>How to change scene in Unity! In this tutorial we cover four different scenarios on how to switch scenes:</strong></p>
<ol>
<li><span style="font-weight: 400;">Change Scene on Button Press</span></li>
<li><span style="font-weight: 400;"> Change Scene on Collision</span></li>
<li><span style="font-weight: 400;"> Switch scenes after time (delay)</span></li>
<li><span style="font-weight: 400;"> How to Change Level (scene) AND Keep Your Variables </span><span style="font-weight: 400;"><br />
</span></li>
</ol>
<hr />
<p><span style="font-weight: 400;">❤️ <strong>Subscribe to Oxmond Tutorials. Stay ahead af the game!</strong></span><br />
<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 DOTweeen tool here:</strong></span><br />
<a href="https://assetstore.unity.com/packages/tools/animation/dotween-hotween-v2-27676?aid=1100l4p9k"><span style="font-weight: 400;">https://assetstore.unity.com/packages/tools/animation/dotween-hotween-v2-27676?aid=1100l4p9k</span></a></p>
<p><span style="font-weight: 400;">✅ <strong>Free Assets from 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><br />
The button script:</strong></p>
<pre>/*

   .-------.                             .--.    .-------.     .--.            .--.     .--.        
   |       |--.--.--------.-----.-----.--|  |    |_     _|--.--|  |_.-----.----|__|---.-|  |-----.
   |   -   |_   _|        |  _  |     |  _  |      |   | |  |  |   _|  _  |   _|  |  _  |  |__ --|
   |_______|__.__|__|__|__|_____|__|__|_____|      |___| |_____|____|_____|__| |__|___._|__|_____|
   © 2019 OXMOND / www.oxmond.com 

*/

using UnityEngine;
using UnityEngine.SceneManagement;

public class BtnClick : MonoBehaviour
{
    public void BtnNewScene()
    {
        PlayerPrefs.SetInt("score", 2500);
        SceneManager.LoadScene("Scene 2");
    }

}
</pre>
<hr />
<p><strong><br />
The Ball Collision Script:</strong></p>
<pre>/*

   .-------.                             .--.    .-------.     .--.            .--.     .--.        
   |       |--.--.--------.-----.-----.--|  |    |_     _|--.--|  |_.-----.----|__|---.-|  |-----.
   |   -   |_   _|        |  _  |     |  _  |      |   | |  |  |   _|  _  |   _|  |  _  |  |__ --|
   |_______|__.__|__|__|__|_____|__|__|_____|      |___| |_____|____|_____|__| |__|___._|__|_____|
   © 2019 OXMOND / www.oxmond.com 

*/

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.SceneManagement;

public class BallCollision : MonoBehaviour
{
    private void OnCollisionEnter2D(Collision2D collision)
    {
        if (collision.gameObject.name == "Ball Red") {
            SceneManager.LoadScene("Scene 2");
        }
    }
}
</pre>
<hr />
<p><strong><br />
The Delay Script:</strong></p>
<pre>/*

   .-------.                             .--.    .-------.     .--.            .--.     .--.        
   |       |--.--.--------.-----.-----.--|  |    |_     _|--.--|  |_.-----.----|__|---.-|  |-----.
   |   -   |_   _|        |  _  |     |  _  |      |   | |  |  |   _|  _  |   _|  |  _  |  |__ --|
   |_______|__.__|__|__|__|_____|__|__|_____|      |___| |_____|____|_____|__| |__|___._|__|_____|
   © 2019 OXMOND / www.oxmond.com 

*/

using UnityEngine;
using DG.Tweening;
using UnityEngine.SceneManagement;

public class Delay : MonoBehaviour
{
    void Start()
    {
        DOVirtual.DelayedCall(3, GotoNextScene);
    }

    void GotoNextScene()
    {
        SceneManager.LoadScene("Scene 2");
    }
}

</pre>
<hr />
<p><strong><br />
The Load Variable (Scene 2) Script:</strong></p>
<pre>/*

   .-------.                             .--.    .-------.     .--.            .--.     .--.        
   |       |--.--.--------.-----.-----.--|  |    |_     _|--.--|  |_.-----.----|__|---.-|  |-----.
   |   -   |_   _|        |  _  |     |  _  |      |   | |  |  |   _|  _  |   _|  |  _  |  |__ --|
   |_______|__.__|__|__|__|_____|__|__|_____|      |___| |_____|____|_____|__| |__|___._|__|_____|
   © 2019 OXMOND / www.oxmond.com 

*/

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using TMPro;

public class Scene2 : MonoBehaviour
{

    public TextMeshPro scoreText;

    void Start()
    {
        scoreText.text = "Score: " + PlayerPrefs.GetInt("score").ToString();
    }

}

</pre>
<p>The post <a rel="nofollow" href="https://oxmond.com/how-to-change-scene-in-unity/">How to Change Scene 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-scene-in-unity/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>C# Lesson: How To Save &#038; Load Game Data on a Local Device</title>
		<link>https://oxmond.com/c-lesson-how-to-save-load-game-data-on-local-device/</link>
					<comments>https://oxmond.com/c-lesson-how-to-save-load-game-data-on-local-device/#respond</comments>
		
		<dc:creator><![CDATA[Oxmond Technology]]></dc:creator>
		<pubDate>Sun, 25 Aug 2019 04:55:35 +0000</pubDate>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Unity]]></category>
		<category><![CDATA[2019]]></category>
		<category><![CDATA[between]]></category>
		<category><![CDATA[between scenes]]></category>
		<category><![CDATA[coding pirates]]></category>
		<category><![CDATA[counter]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[device]]></category>
		<category><![CDATA[display]]></category>
		<category><![CDATA[easy]]></category>
		<category><![CDATA[file]]></category>
		<category><![CDATA[float]]></category>
		<category><![CDATA[gamedata]]></category>
		<category><![CDATA[Hans Oxmond]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[integer]]></category>
		<category><![CDATA[Intermediate Tutorial Unity 2019]]></category>
		<category><![CDATA[learn]]></category>
		<category><![CDATA[lesson]]></category>
		<category><![CDATA[load]]></category>
		<category><![CDATA[local]]></category>
		<category><![CDATA[mastering]]></category>
		<category><![CDATA[name]]></category>
		<category><![CDATA[Oxmond Unity Tutorials]]></category>
		<category><![CDATA[playerprefs]]></category>
		<category><![CDATA[save]]></category>
		<category><![CDATA[Save & Load Game Data on Local Device]]></category>
		<category><![CDATA[save data]]></category>
		<category><![CDATA[save write and load from file]]></category>
		<category><![CDATA[scenes]]></category>
		<category><![CDATA[score]]></category>
		<category><![CDATA[state]]></category>
		<category><![CDATA[store]]></category>
		<category><![CDATA[string]]></category>
		<category><![CDATA[system]]></category>
		<category><![CDATA[tip]]></category>
		<category><![CDATA[Unity3d]]></category>
		<category><![CDATA[variables]]></category>
		<category><![CDATA[video games]]></category>
		<category><![CDATA[write]]></category>
		<guid isPermaLink="false">https://oxmond.com/?p=542</guid>

					<description><![CDATA[<p>Save data like username and score on a local device using PlayerPrefs. You can save strings, integers and floats. A basic example would look something like this: Save: PlayerPrefs.SetString(&#8220;playerName&#8221;, &#8220;Oxmond&#8221;); Load: PlayerPrefs.GetString(&#8220;playerName&#8221;); ❤️ Subscribe to Oxmond Tutorials. Stay ahead of the game! https://bit.ly/SubscribeOxmondTutorials ✅ Free Assets...</p>
<p>The post <a rel="nofollow" href="https://oxmond.com/c-lesson-how-to-save-load-game-data-on-local-device/">C# Lesson: How To Save &#038; Load Game Data on a Local Device</a> appeared first on <a rel="nofollow" href="https://oxmond.com">Oxmond Technology</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Save data like username and score on a local device using PlayerPrefs. You can save strings, integers and floats. A basic example would look something like this:</p>
<p>Save:<br />
PlayerPrefs.SetString(&#8220;playerName&#8221;, &#8220;Oxmond&#8221;);</p>
<p>Load:<br />
PlayerPrefs.GetString(&#8220;playerName&#8221;);</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> 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>😷👕 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><strong>Basic SaveAndLoadData script:</strong></p>
<pre>/*

   .-------.                             .--.    .-------.     .--.            .--.     .--.        
   |       |--.--.--------.-----.-----.--|  |    |_     _|--.--|  |_.-----.----|__|---.-|  |-----.
   |   -   |_   _|        |  _  |     |  _  |      |   | |  |  |   _|  _  |   _|  |  _  |  |__ --|
   |_______|__.__|__|__|__|_____|__|__|_____|      |___| |_____|____|_____|__| |__|___._|__|_____|
   © 2019 OXMOND / www.oxmond.com 

*/
using UnityEngine;

public class SaveAndLoadData : MonoBehaviour
{

public void SaveData() {
PlayerPrefs.SetString("playerName", "Oxmond");
PlayerPrefs.SetInt("Score", 2000));
}

public void LoadData()
{
string _userName = PlayerPrefs.GetString("playerName");
int _score = PlayerPrefs.GetInt("Score");
}

}
</pre>
<hr />
<p><strong>SaveAndLoadData script used in the video:</strong></p>
<pre>/*

   .-------.                             .--.    .-------.     .--.            .--.     .--.        
   |       |--.--.--------.-----.-----.--|  |    |_     _|--.--|  |_.-----.----|__|---.-|  |-----.
   |   -   |_   _|        |  _  |     |  _  |      |   | |  |  |   _|  _  |   _|  |  _  |  |__ --|
   |_______|__.__|__|__|__|_____|__|__|_____|      |___| |_____|____|_____|__| |__|___._|__|_____|
   © 2019 OXMOND / www.oxmond.com 

*/

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using TMPro;

public class SaveAndLoadData : MonoBehaviour
{

public TMP_InputField userName;
public TMP_InputField score;
public TMP_Text output;

public void SaveData() {
PlayerPrefs.SetString("playerName", userName.text);
PlayerPrefs.SetInt("Score", int.Parse(score.text));
}

public void LoadData()
{
print(PlayerPrefs.GetString("playerName"));
output.text = "Name: " + PlayerPrefs.GetString("playerName") + "
" +"Score: " + PlayerPrefs.GetInt("Score").ToString();
}

}
</pre>
<p>The post <a rel="nofollow" href="https://oxmond.com/c-lesson-how-to-save-load-game-data-on-local-device/">C# Lesson: How To Save &#038; Load Game Data on a Local Device</a> appeared first on <a rel="nofollow" href="https://oxmond.com">Oxmond Technology</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://oxmond.com/c-lesson-how-to-save-load-game-data-on-local-device/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
