<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<rss version="2.0" 
  xmlns:content="http://purl.org/rss/1.0/modules/content/" 
  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:media="http://search.yahoo.com/mrss/">
  <channel>
    <title>Unity on gal.vin</title>
    <link>https://gal.vin/tags/unity/</link>
    <description>Recent content in Unity on gal.vin</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>en</language>
    <copyright>&amp;copy;{year}, All Rights Reserved</copyright>
    <lastBuildDate>Fri, 19 Jun 2020 14:19:15 +0000</lastBuildDate>
    <sy:updatePeriod>daily</sy:updatePeriod>
    
        <atom:link href="https://gal.vin/tags/unity/index.xml" rel="self" type="application/rss+xml" />
    

      
      <item>
        <title>3D Maze Remix - Update v1.4</title>
        <link>https://gal.vin/posts/old/3d-maze-remix-update-v1-4/</link>
        <pubDate>Fri, 19 Jun 2020 14:19:15 +0000</pubDate>
        
        <atom:modified>Fri, 19 Jun 2020 14:19:15 +0000</atom:modified>
        <guid>https://gal.vin/posts/old/3d-maze-remix-update-v1-4/</guid>
        <description>Update v1.4 Download from Itch.io, available for Windows, macOS, and Linux
Once again, I&amp;rsquo;ve updated 3D Maze Remix with some new features that I&amp;rsquo;ve wanted to put in the game since I started developing it. I don&amp;rsquo;t consider this project &amp;ldquo;finished&amp;rdquo; just yet, as I&amp;rsquo;d like to improve the AI in the &amp;ldquo;demo&amp;rdquo; mode and make it more true to the original 3D Maze screensaver, which has been my aim throughout the entire project.</description>
        <content:encoded>&lt;p&gt;&lt;img src=&#34;https://gal.vin/media/util-logos/3dmr-logo.webp&#34; alt=&#34;3D Maze Remix&#34; /&gt;&lt;/p&gt;
&lt;h3 id=&#34;update-v14&#34;&gt;Update v1.4&lt;/h3&gt;
&lt;p&gt;&lt;a href=&#34;https://mikegalvin.itch.io/3d-maze-remix&#34;&gt;Download from Itch.io, available for Windows, macOS, and Linux&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Once again, I&amp;rsquo;ve updated 3D Maze Remix with some new features that I&amp;rsquo;ve wanted to put in the game since I started developing it. I don&amp;rsquo;t consider this project &amp;ldquo;finished&amp;rdquo; just yet, as I&amp;rsquo;d like to improve the AI in the &amp;ldquo;demo&amp;rdquo; mode and make it more true to the original 3D Maze screensaver, which has been my aim throughout the entire project. So why am I releasing this if it&amp;rsquo;s not finished and needs refining? As I&amp;rsquo;m learning Unity and C#, I want to show the progress of my work at self-imposed milestones. 3D Maze Remix v1.1 is still available on the Microsoft Store and provides an interesting look back to the original version of the game.&lt;/p&gt;
&lt;h3 id=&#34;v14-change-log&#34;&gt;v1.4 Change Log&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Added autonomous movement to the &amp;ldquo;rat&amp;rdquo; character.&lt;/li&gt;
&lt;li&gt;Added &amp;ldquo;demo&amp;rdquo; mode. Allowing the player character to move autonomously like the original screensaver.&lt;/li&gt;
&lt;li&gt;Added display resolution options.&lt;/li&gt;
&lt;li&gt;General clean up and optimisations.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;If you would like to support me, please check out the link below.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://www.paypal.me/digressive&#34;&gt;PayPal&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;If you have any questions or comments, please leave them below.&lt;/p&gt;
&lt;p&gt;-Mike&lt;/p&gt;
</content:encoded>
        
        
        
        
        
          
            
              <category>3D Maze Remix</category>
            
          
            
              <category>Unity</category>
            
          
        
        
        
      </item>
      
      <item>
        <title>3D Maze Remix Dev Diary #1</title>
        <link>https://gal.vin/posts/old/3d-maze-remix-dev-diary-1/</link>
        <pubDate>Tue, 14 Apr 2020 19:10:36 +0000</pubDate>
        
        <atom:modified>Tue, 14 Apr 2020 19:10:36 +0000</atom:modified>
        <guid>https://gal.vin/posts/old/3d-maze-remix-dev-diary-1/</guid>
        <description>I&amp;rsquo;ve started work on 3D Maze Remix to add some features I&amp;rsquo;ve been wanting to figure out for a while. As I&amp;rsquo;m still learning C# and Unity the pretty simple sounding additions take longer than I initially thought. Here&amp;rsquo;s what I&amp;rsquo;ve been working on.
Adding autonomous movement to the rat entity Making the rat move and not clip through the walls, floor or ceiling meant adding collision to the rat but allowing the player and rat to pass through each other.</description>
        <content:encoded>&lt;p&gt;I&amp;rsquo;ve started work on 3D Maze Remix to add some features I&amp;rsquo;ve been wanting to figure out for a while. As I&amp;rsquo;m still learning C# and Unity the pretty simple sounding additions take longer than I initially thought. Here&amp;rsquo;s what I&amp;rsquo;ve been working on.&lt;/p&gt;
&lt;h3 id=&#34;adding-autonomous-movement-to-the-rat-entity&#34;&gt;Adding autonomous movement to the rat entity&lt;/h3&gt;
&lt;p&gt;Making the rat move and not clip through the walls, floor or ceiling meant adding collision to the rat but allowing the player and rat to pass through each other. So, I learned about and used Layer-based collision detection. &lt;a href=&#34;https://docs.unity3d.com/Manual/LayerBasedCollision.html&#34;&gt;https://docs.unity3d.com/Manual/LayerBasedCollision.html&lt;/a&gt;&lt;/p&gt;
&lt;h3 id=&#34;fixing-various-visual-bugs&#34;&gt;Fixing various visual bugs&lt;/h3&gt;
&lt;p&gt;Spotted what appeared to be a weird visual bug when pausing or reaching the finish screen and attempted to fix. It turned out that it was due to me having the gismos enabled in the game view of Unity and it was the edge of the canvas. A few images appear to have additional partially transparent pixels in the backgrounds, but they do not appear in photoshop, only in the Unity editor. I&amp;rsquo;ll investigate further.&lt;/p&gt;
&lt;h3 id=&#34;add-autonomous-movement-for-the-player&#34;&gt;Add autonomous movement for the player&lt;/h3&gt;
&lt;p&gt;I want to add an option to have autonomous movement for the player character so the game can run without user interaction like the original screen saver. I am currently using the same script as with the rat and it works however movement is not ideal and when the player interacts with a pickup object and the camera rotates the “view” disconnects. This is probably due to a work around I introduced in an earlier version. I will work on finding a better workaround and fixing this issue.&lt;/p&gt;
&lt;h3 id=&#34;general-clean-up&#34;&gt;General clean up&lt;/h3&gt;
&lt;p&gt;I removed the point light from the player character as it didn&amp;rsquo;t serve much purpose except the add additional light to the pickup objects.&lt;/p&gt;
&lt;p&gt;The current version of 3D Maze Remix is available on &lt;a href=&#34;https://mikegalvin.itch.io/3d-maze-remix&#34;&gt;my itch.io page.&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;If you would like to support me, please check out the link below.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://www.paypal.me/digressive&#34;&gt;PayPal&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;If you have any questions or comments, please leave them below.&lt;/p&gt;
&lt;p&gt;-Mike&lt;/p&gt;
</content:encoded>
        
        
        
        
        
          
            
              <category>3D Maze Remix</category>
            
          
            
              <category>Unity</category>
            
          
        
        
        
      </item>
      
      <item>
        <title>3D Maze Remix now available on itch.io</title>
        <link>https://gal.vin/posts/old/3d-maze-remix-now-available-on-itch-io/</link>
        <pubDate>Sat, 15 Dec 2018 10:20:30 +0000</pubDate>
        
        <atom:modified>Sat, 15 Dec 2018 10:20:30 +0000</atom:modified>
        <guid>https://gal.vin/posts/old/3d-maze-remix-now-available-on-itch-io/</guid>
        <description>I&amp;rsquo;ve made all builds of 3D Maze Remix v1.3 available to download on itch.io, you can find it here: https://mikegalvin.itch.io/3d-maze-remix
Making version v1.3 available on the Microsoft Store has proved to be impossible due to changes in Microsoft&amp;rsquo;s terms and conditions, however for some reason these changes don&amp;rsquo;t mean that the original version I uploaded to the Microsoft has been taken off, I just can&amp;rsquo;t update it.
Itch.io seems like a good place for the game to live from here on out.</description>
        <content:encoded>&lt;p&gt;I&amp;rsquo;ve made all builds of 3D Maze Remix v1.3 available to download on itch.io, you can find it here: &lt;a href=&#34;https://mikegalvin.itch.io/3d-maze-remix&#34;&gt;https://mikegalvin.itch.io/3d-maze-remix&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Making version v1.3 available on the Microsoft Store has proved to be impossible due to changes in Microsoft&amp;rsquo;s terms and conditions, however for some reason these changes don&amp;rsquo;t mean that the original version I uploaded to the Microsoft has been taken off, I just can&amp;rsquo;t update it.&lt;/p&gt;
&lt;p&gt;Itch.io seems like a good place for the game to live from here on out.&lt;/p&gt;
&lt;p&gt;If you have any questions or comments, please leave them below.&lt;/p&gt;
&lt;p&gt;-Mike&lt;/p&gt;
</content:encoded>
        
        
        
        
        
          
            
              <category>3D Maze Remix</category>
            
          
            
              <category>Unity</category>
            
          
        
        
        
      </item>
      
      <item>
        <title>3D Maze Remix - Update v1.3</title>
        <link>https://gal.vin/posts/old/3d-maze-remix-update-v1-3/</link>
        <pubDate>Sun, 02 Dec 2018 12:37:41 +0000</pubDate>
        
        <atom:modified>Sun, 02 Dec 2018 12:37:41 +0000</atom:modified>
        <guid>https://gal.vin/posts/old/3d-maze-remix-update-v1-3/</guid>
        <description>Update v1.3 Download from Itch.io
This is a minor update to all versions of 3D Maze Remix. The changes can be seen below.
V 1.3 Change Log  Added disclaimer.  If you have any questions or comments, please leave them below.
-Mike</description>
        <content:encoded>&lt;p&gt;&lt;img src=&#34;https://gal.vin/media/util-logos/3dmr-logo.webp&#34; alt=&#34;3D Maze Remix&#34; /&gt;&lt;/p&gt;
&lt;h2 id=&#34;update-v13&#34;&gt;Update v1.3&lt;/h2&gt;
&lt;p&gt;&lt;a href=&#34;https://mikegalvin.itch.io/3d-maze-remix&#34;&gt;Download from Itch.io&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;This is a minor update to all versions of 3D Maze Remix. The changes can be seen below.&lt;/p&gt;
&lt;h3 id=&#34;v-13-change-log&#34;&gt;V 1.3 Change Log&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Added disclaimer.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;If you have any questions or comments, please leave them below.&lt;/p&gt;
&lt;p&gt;-Mike&lt;/p&gt;
</content:encoded>
        
        
        
        
        
          
            
              <category>3D Maze Remix</category>
            
          
            
              <category>Unity</category>
            
          
        
        
        
      </item>
      
      <item>
        <title>3D Maze Remix - Update v1.2</title>
        <link>https://gal.vin/posts/old/3d-maze-remix-update-v1-2/</link>
        <pubDate>Mon, 12 Nov 2018 14:25:03 +0000</pubDate>
        
        <atom:modified>Mon, 12 Nov 2018 14:25:03 +0000</atom:modified>
        <guid>https://gal.vin/posts/old/3d-maze-remix-update-v1-2/</guid>
        <description>Update v1.2 Download for Windows, Mac and Linux
This is a minor update to all versions of 3D Maze Remix. The changes can be seen below.
V 1.2 Change Log  Added walk forward/backward control to the left and right mouse buttons, for one handed play. Slight redesign to the controls screen. Some control labels have been fixed for consistency. Slight title screen redesign.  If you have any questions or comments, please leave them below.</description>
        <content:encoded>&lt;p&gt;&lt;img src=&#34;https://gal.vin/media/util-logos/3dmr-logo.webp&#34; alt=&#34;3D Maze Remix&#34; /&gt;&lt;/p&gt;
&lt;h2 id=&#34;update-v12&#34;&gt;Update v1.2&lt;/h2&gt;
&lt;p&gt;&lt;a href=&#34;https://mikegalvin.itch.io/3d-maze-remix&#34;&gt;Download for Windows, Mac and Linux&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;This is a minor update to all versions of 3D Maze Remix. The changes can be seen below.&lt;/p&gt;
&lt;h3 id=&#34;v-12-change-log&#34;&gt;V 1.2 Change Log&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Added walk forward/backward control to the left and right mouse buttons, for one handed play.&lt;/li&gt;
&lt;li&gt;Slight redesign to the controls screen. Some control labels have been fixed for consistency.&lt;/li&gt;
&lt;li&gt;Slight title screen redesign.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;If you have any questions or comments, please leave them below.&lt;/p&gt;
&lt;p&gt;-Mike&lt;/p&gt;
</content:encoded>
        
        
        
        
        
          
            
              <category>3D Maze Remix</category>
            
          
            
              <category>Unity</category>
            
          
        
        
        
      </item>
      
      <item>
        <title>3D Maze Remix now available from the Microsoft Store</title>
        <link>https://gal.vin/posts/old/3d-maze-remix-in-the-microsoft-store/</link>
        <pubDate>Thu, 26 Oct 2017 11:28:36 +0000</pubDate>
        
        <atom:modified>Thu, 26 Oct 2017 11:28:36 +0000</atom:modified>
        <guid>https://gal.vin/posts/old/3d-maze-remix-in-the-microsoft-store/</guid>
        <description>My game 3D Maze Remix is now available in the Microsoft store for Windows 10 devices.
Please check out this page for more information on the game and downloads for other Operating Systems.
If you have any questions or comments, please leave them below.
-Mike</description>
        <content:encoded>&lt;p&gt;My game 3D Maze Remix is now available in &lt;a href=&#34;https://www.microsoft.com/store/productId/9P9JP99W8GBJ&#34;&gt;the Microsoft store&lt;/a&gt; for Windows 10 devices.&lt;/p&gt;
&lt;p&gt;Please check out &lt;a href=&#34;https://gal.vin/posts/old/3d-maze-remix-1-1-update/&#34;&gt;this page for more information&lt;/a&gt; on the game and downloads for other Operating Systems.&lt;/p&gt;
&lt;p&gt;If you have any questions or comments, please leave them below.&lt;/p&gt;
&lt;p&gt;-Mike&lt;/p&gt;
</content:encoded>
        
        
        
        
        
          
            
              <category>3D Maze Remix</category>
            
          
            
              <category>Unity</category>
            
          
        
        
        
      </item>
      
      <item>
        <title>3D Maze Remix - Update v1.1</title>
        <link>https://gal.vin/posts/old/3d-maze-remix-1-1-update/</link>
        <pubDate>Tue, 12 Sep 2017 19:10:25 +0000</pubDate>
        
        <atom:modified>Tue, 12 Sep 2017 19:10:25 +0000</atom:modified>
        <guid>https://gal.vin/posts/old/3d-maze-remix-1-1-update/</guid>
        <description>Update v1.1 Now Available in the Microsoft Store for Windows 10
Download for Windows, Mac and Linux
I&amp;rsquo;ve been working on an update to 3D Maze Remix - a small game I made based on the Windows 95 screensaver: 3D Maze. This update focuses on making the game more of a complete package. I&amp;rsquo;ve focused on improving the look and feel to be more consistent and more accurate to the source material.</description>
        <content:encoded>&lt;p&gt;&lt;img src=&#34;https://gal.vin/media/util-logos/3dmr-logo.webp&#34; alt=&#34;3D Maze Remix&#34; /&gt;&lt;/p&gt;
&lt;h2 id=&#34;update-v11&#34;&gt;Update v1.1&lt;/h2&gt;
&lt;p&gt;&lt;a href=&#34;https://www.microsoft.com/store/productId/9P9JP99W8GBJ&#34;&gt;Now Available in the Microsoft Store for Windows 10&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://mikegalvin.itch.io/3d-maze-remix&#34;&gt;Download for Windows, Mac and Linux&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I&amp;rsquo;ve been working on an update to 3D Maze Remix - a small game I made based on the Windows 95 screensaver: 3D Maze. This update focuses on making the game more of a complete package. I&amp;rsquo;ve focused on improving the look and feel to be more consistent and more accurate to the source material. I&amp;rsquo;ve also added some features to improve it as a game, such as improved  keyboard controls and Xbox controller support.&lt;/p&gt;
&lt;p&gt;Please see the full change log below for a complete list of changes.&lt;/p&gt;
&lt;p&gt;If you have any questions or comments, please leave them below.&lt;/p&gt;
&lt;p&gt;-Mike&lt;/p&gt;
&lt;h3 id=&#34;v-11-change-log&#34;&gt;V 1.1 Change Log&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Added Xbox controller support.&lt;/li&gt;
&lt;li&gt;Added Pause function.&lt;/li&gt;
&lt;li&gt;Added a &amp;lsquo;Win&amp;rsquo; condition screen.&lt;/li&gt;
&lt;li&gt;Added new animations for the maze and maze objects.&lt;/li&gt;
&lt;li&gt;Added alternate keyboard controls.&lt;/li&gt;
&lt;li&gt;Added a new icon.&lt;/li&gt;
&lt;li&gt;Added new &amp;lsquo;Start&amp;rsquo; button sprite. It is now more authentic to the original.&lt;/li&gt;
&lt;li&gt;Updated the design of the UI.&lt;/li&gt;
&lt;li&gt;Reduced stuttering when moving around the maze.&lt;/li&gt;
&lt;li&gt;Changed the &amp;lsquo;Instructions&amp;rsquo; screen to &amp;lsquo;Controls&amp;rsquo;.&lt;/li&gt;
&lt;li&gt;Improved keyboard controls and simplified mappings.&lt;/li&gt;
&lt;li&gt;Improved maze start animation to be more authentic to the original.&lt;/li&gt;
&lt;li&gt;Improved how the maze sprites are drawn.&lt;/li&gt;
&lt;li&gt;Improved how the maze textures are drawn to look more accurate to the original.&lt;/li&gt;
&lt;/ul&gt;
</content:encoded>
        
        
        
        
        
          
            
              <category>3D Maze Remix</category>
            
          
            
              <category>Unity</category>
            
          
        
        
        
      </item>
      
      <item>
        <title>3D Maze Remix v1.0</title>
        <link>https://gal.vin/posts/old/3d-maze-remix/</link>
        <pubDate>Mon, 26 Jun 2017 19:01:46 +0000</pubDate>
        
        <atom:modified>Mon, 26 Jun 2017 19:01:46 +0000</atom:modified>
        <guid>https://gal.vin/posts/old/3d-maze-remix/</guid>
        <description>Download for Windows, Mac and Linux
Important note: 3D Maze Remix was updated to v1.1, adding many new features, and is now also available from the Microsoft Store. Please check out this page for all the details.
For the last few months I&amp;rsquo;ve been learning Unity and C#, and this is the first real thing I&amp;rsquo;ve made: 3D Maze Remix. It&amp;rsquo;s a playable, interactive version of the 3D Maze screensaver that first shipped in Windows 95.</description>
        <content:encoded>&lt;p&gt;&lt;img src=&#34;https://gal.vin/media/util-logos/3dmr-logo.webp&#34; alt=&#34;3D Maze Remix&#34; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://mikegalvin.itch.io/3d-maze-remix&#34;&gt;Download for Windows, Mac and Linux&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Important note: 3D Maze Remix was updated to v1.1, adding many new features, and is now also available from the &lt;a href=&#34;https://www.microsoft.com/store/productId/9P9JP99W8GBJ&#34;&gt;Microsoft Store&lt;/a&gt;. Please check out &lt;a href=&#34;https://gal.vin/posts/old/3d-maze-remix-1-1-update/&#34;&gt;this page&lt;/a&gt; for all the details.&lt;/p&gt;
&lt;p&gt;For the last few months I&amp;rsquo;ve been learning Unity and C#, and this is the first real thing I&amp;rsquo;ve made: 3D Maze Remix. It&amp;rsquo;s a playable, interactive version of the 3D Maze screensaver that first shipped in Windows 95. No original code was ported, this is all new code. I&amp;rsquo;ve tried to make the game as accurate to the original screensaver as possible. Enjoy!&lt;/p&gt;
&lt;h3 id=&#34;controls&#34;&gt;Controls&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;WSAD keys to move around.&lt;/li&gt;
&lt;li&gt;Mouse to look around.&lt;/li&gt;
&lt;li&gt;Backspace to regenerate the maze.&lt;/li&gt;
&lt;li&gt;Escape to go back to the main menu.&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&#34;goal&#34;&gt;Goal&lt;/h3&gt;
&lt;p&gt;Find the smiley face to win the game! Please note that winning the game just regenerates the maze. It&amp;rsquo;s a very simple game. :)&lt;/p&gt;
&lt;h3 id=&#34;features&#34;&gt;Features&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Randomly generated maze&lt;/li&gt;
&lt;li&gt;Pickups/secrets randomly placed in the maze&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;It was an experience building this game, as a total Unity and C# newbie sometimes it felt like I was taking on too much too quickly, but I tend to jump in at the deep end with things anyway. I plan on revisiting this and improving it in future as I learn more and I&amp;rsquo;d like to try a completely new project too.&lt;/p&gt;
&lt;p&gt;If you have any questions or comments, please leave them below.&lt;/p&gt;
&lt;p&gt;-Mike&lt;/p&gt;
</content:encoded>
        
        
        
        
        
          
            
              <category>3D Maze Remix</category>
            
          
            
              <category>Unity</category>
            
          
        
        
        
      </item>
      

    
  </channel>
</rss>