NEW NOTE:
Oh to add to the fun, built on my other pc, ran. No disappearing sprite! Thought maybe my player settings were different. Took the game .exe that was built ran it on the original pc i discovered the issue, sprites disappear. This is a grave driver issue or something ? I have no hope of fixing this it seems especially when the same build that doesnt run on this pc runs fine in the editor on this pc.
So I have my main sprite, and when i walk left in the PC build the image disappears…in the editor things work flawlessly. I noticed also my gui texture i have for a meter in my game looks all chopped up too (screenshot provided). very bizarre, is there some player setting i’m missing? This is unity 5. I know in older unity versions it worked fine during pc build, this was a while ago though but I don’t think its anything I have done in my game. This is frustrating not sure what is so different about a PC Build, works fine in a web build too!
I did notice a few things. I am using NGUI and 2D Tool Kit plug ins and unity 5. I have a line in my code:
NGUIDebug.Log("len: " + pointCount.Length);
and that NEVER shows up except for in this pc build. So i am not sure what is going on but it is also any sprite that moves left does not render. I change my sprites direction using this;
forceX = standing ? speed * controller.moving.x : (speed * controller.moving.x * airSpeedMultiplier);
transform.localScale = new Vector3 (forceX > 0 ? 1 : -1, 1, 1);
This works fine in editor and web version. I am using Unity v. 5.0.1f1 I did get something going when i mucked with the player values for standalone…though one setting did get the sprites to show up when facing left yet broke all my other graphics (think it was legacy deferred) deferred no graphics showed up…forward works best but the left facing sprites are invisible…and yah that damn collision changes. i need a player option that says “make it work like in editor” yah…that’s the ticket.