Unity Tutorial: How to Use Enums

kristielCoding & Programming, Unity Game Development

Unity Tutorial: How to Use Enums

Have you ever been working on your game in Unity and wondered how you could create a custom type for a system you were working on? Well, wonder no more! The C# language (and many other languages) have a solution to this problem by using something called an enum. In this blog, we’ll review what enums are and how you can use … Read More

Share this Post

Unity Tip: Use Scripts to Modify Particles

kristielTutorial, Unity Game Development

Unity Tip: Use Scripts to Modify Particles

Unity 3D offers an enormous API that provides ways to manipulate the vast majority of objects in your game. However, there are some features that are not as robust as you might hope. Take, for example, the ParticleSystem class. Let’s say, you have a particle system. You want to modify the radius of the particle system’s shape using a script. After a quick … Read More

Share this Post

Unity Tip: Using Code to Change Material Properties

kristielAll Topics, Coding & Programming, Tutorial

Unity-Tip-How to Change Material Properties in Unity

I am working on a Unity Project in my free time. Recently, I wanted to have the ability to dynamically change the material properties of objects when the player looked at them. I did not want a static, unchanging material. I needed to be able to use C# scripts to make the material change features during gameplay. This is relatively easy to do. However, Unity’s … Read More

Share this Post

Unity 5 Pro Suite Available for Students

kristielAll Topics, Unity Game Development

Student/Teacher Unity 5 Pro Suite Available!

Unity is a fully-integrated development engine used to create 2D, 3D multiplatform games and interactive content. If you’ve read any of our Unity blogs, you know that Studica is a big fan. Many popular games are created using Unity. In fact, the Pokémon GO mobile game making news everywhere was made with Unity. One thing that we haven’t really talked about (until now), is … Read More

Share this Post

Unity Collaborate Beta – What You Need To Know

kristielAll Topics, Tutorial, Unity Game Development

Unity-Collaborate-Blog

Almost a year ago, I wrote a blog post about setting up Unity to work with GitHub. After Unity got rid of their built-in Asset Server for version control, developers have had to turn to Git or SVN for their version control needs. However, Unity is adding another version control tool to your arsenal; Unity Collaborate. What is Unity Collaborate? … Read More

Share this Post

How to Create a UI in Unity 3D

kristielAll Topics, Tutorial, Unity Game Development

How to Create a UI in Unity 3D

User interfaces (UI’s) are core features in just about every modern software application. Games are no exception to this rule. The vast majority of games utilizes some form of UI to display information such as health, skills, maps, ammo for a weapon, and more. Unity 3D offers a variety of UI elements that you can use in your game. In … Read More

Share this Post

Unity Certification and Courseware Supports Education

kristielAll Topics, Unity Game Development

Unity Certification and Courseware Supports Education

Unity Technologies has revolutionized the game industry with Unity, a powerful development platform that is used to create games and interactive experiences. Unity now supports 25 platforms across 2D, 3D, VR and AR.  Of the top 1,000 grossing games, 30% have been built with Unity, reaching over 1.5 billion devices. The mission of Unity has always been to create a … Read More

Share this Post

How to Create a Raycast in Unity 3D

kristielAll Topics, Tutorial, Unity Game Development

How to Create a Raycast in Unity 3D

What is Raycasting? Raycasting is commonly used in video game development for things such as determining line of sight of the player or the AI, where a projectile will go, creating lasers and more. A raycast is, essentially, a ray that gets sent out from a position in 3D or 2D space and moves in a specific direction. Unity 3D … Read More

Share this Post