In this tutorial we will learn how to draw a Maurer Rose with a LineRenderer in Unity. Introduction Recently, I was watching a video by Daniel Shiffman about Maurer Rose that inspired me to try it out at Unity. Now you must be thinking “What the hell is a Maurer...
Read "Drawing a Maurer Rose With Unity"
After 4 months of work, I am finally starting the open beta of Puzzimals: https://play.google.com/store/apps/details?id=br.com.diegogiacomelli.puzzimals Cute, but challenging! Don’t let the cute look or super fun animations fool you, Puzzimals is a cube-matching game challenging you to match identical tiles in 100 levels of thought-provoking puzzles in a world map....
Read "Puzzimals: Open beta"
You can add a custom section to Project Settings window that allows you to configure some global settings for your project using a SettingsProvider
Setup
You can easily import this gist directly into your Unity 3D project using the Gist Importer
Read "unitytips: SettingsProvider"
You can create a PropertyAttribute to display a help box on inspector showing a few lines of information, like EditorGUI.HelpBox, but with a docs button to the documentation page.
Setup
You can easily import this gist directly into your Unity 3D project using the Gist Importer
Usage
Read "unitytips: HelpBox Attribu..."
Using Süleyman Yasir KULA Unity Native Share Plugin you can easily add native share to your Android/iOS games. I made the gist below that uses the plugin to add a social share component to any game object. Code You can easily import this gist directly into your Unity 3D project...
Read "unitytips: Social Share"
You can create a simple logging component to record logs from any UnityEvent and configure them directly in the editor:
Code
You can easily import this gist directly into your Unity 3D project using the Gist Importer
Read "unitytips: Dynamic Log"
You can use EditorApplication.isPlaying in your custom editor to update the game view when a ScriptableObject is updated and you need to restart the scene or do something more complex to see the result of ScriptableObject changed during the game’s playing in the editor.
Read "unitytips: Using Scriptabl..."
You can create a PropertyDrawer to display a help box on inspector showing the time information in seconds fields using TimeSpan format strings:
Setup
You can easily import this gist directly into your Unity 3D project using the Gist Importer
Usage
Read "unitytips: TimeSpan Box Dr..."
In this post I will list some tips and tricks that I learned while using the Google Play Games Plugin for Unity. Introduction The Unity3D has a code interface for questions regarding social features in games, these interfaces are called Social API. It provides a unified interface to different social...
Read "Google Play Games Plugin for Uni..."
Recently I needed to automate the generation of a database script deploy from a SQL Server Database Project on our Azure Pipelines continuous integration. Below I will describe the steps to achieve such thing. Building the solution A SQL Server Database Project has a solution (.sln) as any other kind...
Read "Azure Pipelines - Generating DB ..."