Answer by lodendsg
If you CancelInvoke() isn't it going to stop indefinitely so what you want is either to start it back up when count < 3 or a recursive invoke or a test on spawn i.e. (Please note in the examples...
View ArticleAnswer by lodendsg
Check into this ([http://docs.unity3d.com/Documentation/ScriptReference/GeometryUtility.CalculateFrustumPlanes.html][1]) it calculates the planes of the camera's frustum being the limits of the cameras...
View ArticleAnswer by lodendsg
In the game object that I assume holds your light and all you can add the sound as well and then you can use audio.play(); i.e. ([GameObject][1]) [1]:...
View ArticleAnswer by lodendsg
Based on cjmarsh pointer I came up with the following thought I would post it here in case others came looking for similar. Note I capture the start color but you could in most cases assume that a mats...
View ArticleAnswer by lodendsg
What type of space ship start i.e. a top down style game or are you looking for something a bit more complex? In either case I cant think of a working free package but you might get what you need by...
View ArticleAnswer by lodendsg
Found the answer; The casue of this behaviour is the near clip; I had set my GUI camera near to 0.01f; did this so that objects passing through the screen wouldnt get cliped till the last second draw...
View ArticleAnswer by lodendsg
An old question but keep showing up on my google search on the subject finally found the answer here http://forum.unity3d.com/threads/181605-Alpha-Mask-shader-Help Posting for those who like me ran...
View ArticleAnswer by lodendsg
Your looking for a triplanar shader they come in a few styles (http://www.blog.radiator.debacle.us/2013/02/a-smoother-triplanar-shader-for-unity.html) This is a nice blog on triplanar shader in world...
View ArticleAnswer by lodendsg
This is an old question however for my purposes you can set [AddComponentMenu("name as string")] This will set the display name of the component and can put the component under a given menu; handy if...
View ArticleAnswer by lodendsg
Take a look at this (http://answers.unity3d.com/questions/566152/lookat-locked-at-y-axis-but-in-local-space.html) In summary for those of us that want to rotate for example a turret around its local y...
View ArticleAnswer by lodendsg
Had the same issue re "Button does not contain 'onClick'" turns out there is more than one Button class and oddly Visual studio didn't give me the usual ambiguous warning ... no idea how that could be...
View ArticleAnswer by lodendsg
Had a similar issue in my space scene getting stuck on 7/11 Light Transport when I added a large space station. I noted that if I scaled the station down the job didn't stick. This is workable for us...
View ArticleAnswer by lodendsg
Take a look at Steamworks.NET http://steamworks.github.io/installation/ I haven't used it yet my self but seems the most direct approach; I do see some traffic on its Issues forum so I assume it is...
View ArticleAnswer by lodendsg
There is also Steamworks.NET which has Unity package under its install page http://steamworks.github.io/ I took a look at Ludosity's Steamworks Wrapper as well but wasn't sure it was still supported so...
View ArticleAnswer by lodendsg
Ran into this one my self and found this post first then stumbled upon the following in the Unity docs http://docs.unity3d.com/ScriptReference/Display.Activate.html Display.Activate(); seems like the...
View ArticleAnswer by lodendsg
An old question but it came up high in my list when I searched for a similar solution. The answer I came to is documented here http://docs.unity3d.com/ScriptReference/Display.Activate.html
View ArticleAnswer by lodendsg
Just for note for people finding this via google search, The current 'Best Answer' doesn't seem to be updated anymore. The following however does https://steamworks.github.io/ That contains a Unity...
View ArticleAnswer by lodendsg
KaletheQuick's reply is a solid answer if your game has a single scale e.g. if you only ever play from a very far distance camera view. We are also working on a space game and have need of very long...
View ArticleAnswer by lodendsg
I have been looking at similar my self In terms of generating the areas its a matter of defining the area around a 'system' in the case of Stellaris. So each system is a node, then we draw a triangle...
View ArticleAnswer by lodendsg
Just for note when you want a UI element to face the same direction as a given camera its better to say transform.rotation = camera.rotation If you set it to 'look at' the camera its going to look at...
View Article