Rigidbody should only torque around selected axis
Hi All, Tuning the turning radius of a ship. It flops over and pitches in the first 90 degrees of course change? It slowly rotates around local Z and X axis too. I only want the y axis. I apply forward...
View ArticleInstantiate with the prefab's existing Transform
The Instantiate functions require passing in a position and rotation. I want to use the transform that is with the prefab. I'm using a factory pattern to change the look and feel of base prefab at...
View ArticleSynchronizing C# event handlers at Start
Hi All, Having issues with synchronizing c# event handlers at Start(). I cannot control the order of Start calls. An event is sent to synch all the event handlers. Some register handlers after the...
View ArticleWhere does AddRelativeForce apply forces?
Hi All, Does AddRelativeForce apply it's force at the CG or the (0,0,0) of the rigidbody? If it claims it will not produce a torque, it has to be at the CG/CM? A rigidbody is flopping over in turns...
View ArticleAny networking examples using physics engine on server?
All examples of networking I've found never use the Unity physics engine. The "server" seems to just relay messages around like Photon. I want one master to run the simulation and update clients with...
View Articledata shared between scenes cannot be used in inspector?
I'm use to binding/drag and drop my Model data to my Views in the inspector. For game state data you can't since the common solution to a Singleton is new GameObject() at runtime. public class MyClass...
View ArticleCannot obfuscate class inherited by MonoBehavior
Hi All, Been trying out apps that claim to obfuscate Unity builds. Latest one would not change class or method names for any class extending MonoBehavior. Author of app claims Unity will break. Anybody...
View Articleany tool to obfuscate source code not assemblies?
Hi All, I see plenty of reference to obfuscating the .NET assemblies. But won't do classes with Monobehavior superclass. Then have to find yet another obfuscator for android builds? Idea is to...
View ArticleTextures get larger in Android build
Hi All, We are new to porting to Android. We have Unity Pro and basic Android. We have hit the 50 meg file limit. The textures get larger when compressed? Is there a setting we are missing?...
View ArticleReflection in water is pixelated
Hi All, The reflection in a water plane is pixelated. I've used several assets and they all have same problems. Attached screen capture.![alt text][1] [1]: /storage/temp/41542-pixellatedreflection02.jpg
View ArticlePolygons flickering for distant objects
Hi All, Polygons appear to flicker or flash on distant objects. My take is the drawing order messing up? Sometimes it switches between the backside and forward facing polygons. They are different...
View ArticleDifferent mesh draw call count for test and production scene
Hi All, Mesh assets were created to use an texture atlas. All use the same material. In a test scene, all the assets use one draw call or less. When used in game as collection of board hexes, some use...
View ArticleGetComponent started returning nulls
Hi All, Isololated problem to GetComponent returning nulls. Pulled code fragment from production and made a test case: // Use this for initialization void Start () { FishModel.Type fishType =...
View ArticleQuickly rotating game map causes motion sickness
The player uses a fast moving vehicle that can make really fast tight turns. We have the camera third person. Close to top down perspective. The player is always at center of view. The map rotates when...
View ArticleCalculate camera frustum intersection with plane
We have play area composed of hex gameobjects. We only display/load what is visible. Impossible to load large maps at one time. We want to calculate the polygon intersection with the game board plane....
View ArticleTerrain has high draw calls
Hi All, Our solution to woods/trees did not scale well with large maps so we are trying terrain engine. We used the height map import with the shape of our lake hex grid. Our maps are basically flat...
View ArticlePlayer Settings file location
An asset import from store cleared out all the Player Settings? Where are these settings so we can Configuration Manage(CM) them?
View Articlelight rigidbody pushes aside heavier rigidbody
The lighter rigidbody is mass = 1. The heavier body is 1000. They are both capsule colliders. NO I cannot make any of them kinematic. The light strikes the heavy at 35 knots. The heavy is stationary....
View ArticleDoes the accelerometer just return relative rotation angles
My app is trying to detect the movement and stopping of a mobile phone. GPS is NOT the solution. Moving the phone around and printing out the acceleration, it appears it has nothing to do with the...
View Articleplayer control of child network objects
use case: multiplayer crew that operates stations on the same vehicle. All the stations are nested in a prefab. Each Network Object/Station needs to have the authority of a single Client. Only one...
View Articlemaximum connections for windows using UNet multiplayer
Using UNet 2017, I'm unable to connect more than 8 clients concurrently. I set the NetworkManager maxConnections to 25. I tried this on a windows 7 and windows server 2012 with same results. Is this a...
View ArticleUNet client is connecting to an unknown Google Cloud Server
My firewall application has detected a connection to a Google Cloud server Destination: 35.241.26.53 Protocol: TCP (6) Port: HTTPS (6) Bitdefender Firewall I have just removed the NetworkManager and...
View ArticleUnity Analytics custom event limit for server in multiplayer game.
New to Unity Analytics custom events but saw documentation on "100 events per hour (per instance of your game)." Tracking 95% of events on the server side with an authoritative server. So 25 people in...
View Articlecollision contact point (NaN,NaN,NaN)
Getting illegal values for contact point and normal. Point (NaN,NaN,NaN) normal( 0,0,0) Collisions are detected between a cube and capsule. The Ocean surface is represented by a thin cube but large...
View ArticleCollision Detection ContactPoint is wrong when Continuous
NOT a paper/bullet problem. gun is nested under the rigidbody ship. gun is above the hull in world space. gun fires the projectile. projectile.myRigidbody.AddRelativeForce(impulseVector,...
View ArticleCollision detection continuous bug for nested colliders
This is NOT a bullet/paper problem. A collider sphere is used as a projectile. projectile is 760 m/s. A gun fires it. The gun is nested under a ship with a mesh collider for a hull. On the first frame...
View ArticleUnet NetworkId for scene objects NOT spawned
NetworkServer.Spawn() is working and creates a network id. Documentation says scene objects, NOT created at runtime, are disabled and this is what I'm experiencing. It's not clear what code or sequence...
View ArticleBounds center does NOT match the transform.position
`InverseTransformPoint` is not working for us. Always the same as worldSpace. GameObject is translated and bounds center point never matches the GO position. We tried sever `RecalculateBounds` on LOD...
View ArticleOnTriggerEnter not called on enabled for colliders inside
When we enable a force field Collider, I want all the colliders inside of field to OnTriggerEnter. Nothing is happening. OnTriggerStay is not called either. OnTriggerEnter works if we move a a Collider...
View ArticleAddressables always uses the first group in list
I have two groups. One Desktop. One Mobile. Want simpler meshes and effects for a mobile build. I set the default Group to Mobile. I set the Profile to Mobile. Build/New Build/Default Build Script. It...
View Article