Answer by lodendsg
I looking for a similar bit of code; I'm working on a space shooter and want to allow collision with objects to knock the ship about tilting it off its usual axis however I want it to return to level...
View ArticleAnswer by lodendsg
The method I use is as follows To create a prefab simply right click on the folder in your project view where you would like it to live (dont worry you can move it around later) select Create >>...
View ArticleAnswer by lodendsg
[This post][1] should get you what your after its topic of conversation is leveling out an object after rotation such as collision but I would expect you could apply the same practice. If you are...
View ArticleAnswer by lodendsg
fafase answer should be what you need you can also do this inline with fewer variables as //where score is int score; score = (int)(Time.time+0.5f); the cast will simply trim the decimal off so first...
View ArticleAnswer by lodendsg
Im working on a top down my self and had to toy around with rotation the post here might have some information for you it talks about zeroing a rotation i.e. to level out but also has rotation code in...
View ArticleAnswer by lodendsg
As Outlaw noted above `public GUISkin GUI.skin;` wont play nice for you. the syntax for a C# variable decliration is access specifor i.e. internal, private or public of which the defualt for objects...
View ArticleAnswer by lodendsg
Not sure if I fallow correctly but if you wanted a vector local to the gameObject.transform it would be `posn = posn - transform;` which in your code above would be the same as post = new...
View ArticleAnswer 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
I looking for a similar bit of code; I'm working on a space shooter and want to allow collision with objects to knock the ship about tilting it off its usual axis however I want it to return to level...
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 Article