Welcome to EmbeddedSoft: Develop
Here you can ask questions about our APPs
FuelSpaceShip
This is my first attempt to make space ship in Blender including textures. I am very pleased with results. I…
AngryBots 2 Project
EmbeddedSoft will start a new project. We will make a new game based on Unity 4 AngryBots demo. Using scripts…
Neon Battleground performance
NeonBattleground is doing well! Looks like more and more people spend time in the rooms competing.
Change Mono Colours
In OSX open Mono, open MonoDevelop-Unity menu. Click on Preference… Click on Syntax Highlighting Choose colour scheme.
Porting Neon Battleground
Porting Neon Battleground to Unity 5 Progress: 1. Photon update – Done 2. Removing old libs – Done At this…
Simple GUI script in Unity
using UnityEngine; using System.Collections; public class GuiScript : MonoBehaviour { bool showMain = true; bool showAbout = false; bool showStart…
Destroy by boundary in Unity
using UnityEngine; using System.Collections; public class DestroyByBoundary : MonoBehaviour { private PlayerController playerController; private PlayGui playGui; void Start() { //////…
Camera Orbit C# Unity
using UnityEngine; using System.Collections; public class CameraOrbit : MonoBehaviour { public GameObject target = null; public bool orbitY = false;…