Sort list by distance AND by being active
Hi, I have a list of game objects that I sort by distance. _enemyList.Sort(ByDistance); function ByDistance(a: GameObject, b: GameObject) : int { var dstToA =...
View ArticleAmbient occlusion not working
Hi, I've setup a mobile project and are baking my textures but I can not get the ambient occlusion to work, it's not showing on the light maps. Here are my settings. ![alt text][1] And here is a shot...
View ArticleWhy is my list bigger than it should be?
I'm generating 3 random waypoints then saving them to a list but when debugged the list is showing a Count of 5, why? function getWaypionts () { for (var l=0; l < 3; l++) { Debug.Log("l is " + l);...
View ArticleIs there anyway to avoid a StackOverflow
Hi, I've wrote a script that places 10 spawn points on a NavMesh then checks 1.2mt around it for any obstructions if it find any then it runs again until 10 are placed with nothing around them, them I...
View ArticleQuaternion, eulerAngles, localEulerAngles Driving me mad
Hi, I have a reload animation that i want to Slerp slightly, I've tried using Quaternion because I thought it alway taken the shortest route? I have 2 Quaternion, 1 (3,964, -176.115, 0, 0) and...
View Article-Vector3.right and AddRelativeForce
Hi, can you use -Vector3.right with AddRelativeForce like - prefab.GetComponent.().AddRelativeForce (-Vector3.right * prefabForce); As its acting no different than...
View ArticleRoot Motion and Mecanim Speed ??
Hi, Can anyone point me in the right direction, videos, threads or code to do with making Mecanim work with Root Motion please. As I've been working with non root motion animations for year's using...
View ArticleRaycast exit point of collider
Hi, I'd like to find the exit point of a raycast when hitting a collider, in the picture the raycast (the red line coming from left to right) you can see entering the collider on the top left and...
View ArticleStop a GameObject being affected by fog unity 5
Hi, is it posible? I've tried [This][1] with no luck .. Thanks. I'm using this shader .. ![alt text][2] ![alt text][3] But is there a way to use a layer because I'd also like to use the Unity 5...
View ArticleStreaming parts of a level into the scene
Hi, I have Unity 5.4.0b19 and have built a big level, what I'd like to do is split the level into smaller pieces and dream them in when needed. What I've done so far is to do is divide the level into...
View ArticleGet points rotations of a Bezier Curve
Hi, I'm trying to get the rotation of the points of a bezier curve and could do with some help please .. The snippets of code below is what I'm using to draw the bezier curves and that fine, I fly my...
View ArticleRayCast or LineCast?
Hi, First let me say I've chosen LineCast because I'd read that **Linecast will detect intersection even if both StartPos and EndPos are within the collider** in a old post in this forum. I'm...
View ArticleSlow down in the same time over different distances
Hi, I'm trying to slow down a object over different distances in the same time, say 3 seconds. My slow down code is. function lerpSpeed (speed: float, lerpSpeedTime: float) { incomingFlightSpeed =...
View ArticleDivide volume depending on chosen amount.
Hi, I'm a bit stuck and could do with some help please, I've put together a script to find the bounds of a prefab that helps me place light probes but what I'd like to do is if I ask for 2, 3 or 4...
View Article