The rigid-bodies tag has no wiki summary.
0
votes
2answers
66 views
Unity 4 Character Mesh Collider not aligned - character falls through. Image attached inc source unity asset link
Hello Peeps (first post yay).
I have just started to learn about unity and still going through various tutorials and learning the interface along with C#.
I am running Unity 4 and downloaded a free ...
0
votes
0answers
11 views
bullet doesn't show objects even they are active
I created a two leg robot in blender and imported it to bullet. Now when I run my program, after few seconds the left leg will be disappeared. I fought that bullet deactivate objects
if they have not ...
1
vote
1answer
70 views
Shooting a projectile in unity always return null exception
So I'm currently working on my game project using unity3D and I came across this weird error.
I'm trying to instantiate and shoot a projectile forward. here's my Update code:
if ...
0
votes
0answers
258 views
Cannot Check Collisions -Unity
I am currently developing an AI demo for a fighting game using Unity game engine. I wrote an OnTriggerEnter that detects fists or kicks; however it detects actions if and only if the characters move. ...
-1
votes
1answer
69 views
changing rigidbody.mass value in unity 3 D
I am trying to change mass of a 3D object programmatically. But the object doesn't get the calculated mass but a 0 value initially. When the prefab of the object is created it gets the calculated mass ...
0
votes
0answers
24 views
Can we change the mass of a rigidbody in motion at runtime in unity3d?
I am trying to change the mass of a swiped object. I can see the new mass in the inspector on swiping, but the object is not affected by this mass, instead when a prefab of this object is created that ...
4
votes
2answers
275 views
Rigid Body Simulation Friction
I'm currently working on a 3D Rigid Body simulation program. I have currently managed to get the rigid bodies colliding with the floor and bouncing correctly using the impulse. However, my problem is ...
3
votes
1answer
126 views
How is my Rigid Body Collision code inconsistent?
I've been trying to replicate the system found here: http://www.myphysicslab.com/collision.html
So far this is my code (for the case of hitting an infinitely massive object, like an immovable wall):
...
1
vote
1answer
418 views
Slope limit on player movement
I use Unity3D and I have a player with a rigidbody. I add force tto the body for moving the player. My player walks over a terrain but is able to walk up mountains that are to steep to climb. I want ...
0
votes
1answer
752 views
3D Rigid Body Physics (OpenGL)
I am trying to build rigid body physics engine. I am using the glm library as my standard math library.
The problems I am facing are as follows,
When I calculate torque with respect to force (see ...
0
votes
0answers
50 views
Which physics simulation library can handle large meshes?
I'm having problems with physics libraries.
I have a mesh representation of a log (a chopped down from the forest kind of log). This mesh is made up of around 70 scanned rings with 200 vertices per ...
2
votes
0answers
330 views
Re-positioning a Rigid Body in Bullet Physics
I am writing a character animation rendering engine that uses Bullet Physics as a physics simulation engine.
A sequence will start out with no model on the screen, then an animation will be assigned ...
1
vote
1answer
199 views
Substitute rigid body simulation in Bullet Physics?
I want to create my own rigid body simulation algorithm inside Bullet Physics engine. Is there a way to replace the btrigidbody integration with mine, but still maintaining the rest of the simulation ...
0
votes
1answer
138 views
geometric median for rigid body
I need to implement a "geometric median"-type algorithm that would apply to rigid bodies, meaning it would not only find a point minimizing the distance from a set of points, but would also take into ...
8
votes
1answer
461 views
How can I make my physics object settle down?
I'm using BulletSharp, a C# distribution of the bullet library. I have been getting some bouncing in an object that supposedly has Restitution of 0.0f.
I have one dynamic cylinder (what will be a ...
0
votes
2answers
83 views
how to render motion of a 3d rigid object using povray
I run a rigid body simulation of a few objects, and I want to render this simulation using povray.
The objects' meshes stay the same, all that changes is the location and orientation of each object.
...
1
vote
2answers
787 views
Bullet Physics MultiSphereShape Usage
I am posting here because I have not been successful in finding a helpful answer either directly on the Bullet Physics forum or any of those associated forums which have either ported the library ...
21
votes
4answers
2k views
How to make a 2D Soft-body physics engine?
The definition of rigid body in Box2d is
A chunk of matter that is so strong
that the distance between any two bits
of matter on the chunk is completely
constant.
And this is exactly what ...
0
votes
1answer
869 views
How to Make Raycast Effect Named GameObject Only
In my current(Unity 3.3 IOS)project I have a character walking across a bridge. If the character falls off
the bridge he is to fall into a fiery river and explode. The problem is when he's on the ...
2
votes
2answers
217 views
How to simulate the collision of two sticks, like you see in Angry Birds?
The angry birds buildings seem to be composed of rigid sticks that collide and fall.
I sure would like to know how to do that. I don't mind writing original code but surely someone has figured this ...
0
votes
2answers
663 views
Colliding an object
I'm taking my first steps through Unity, as a follow up to this question:
http://answers.unity3d.com/questions/56697/isometric-game-camera-limits
I now realized that I don't know how to make a ...
1
vote
0answers
433 views
3ds max: change cloth into rigid body over time [closed]
I am trying to create a car crash, and for that I have the body of the car as a rigid object, and the front as cloth. Upon impact, I create the animation which deforms the cloth making it look like a ...
1
vote
0answers
636 views
Does anyone have examples/tutorials on how to use Bullet Physics/jBullet to do voronoi shattering?
I'm trying to get something working with jBullet physics and voronoi shattering. I can find videos galore of it working, just no code examples.
Java or C++ is fine. Just need an example of some code. ...
1
vote
1answer
126 views
Compare Quaternion to axis
I have the orientation of an object stored as a unit quaternion, and I want to see what angle the object's local x axis makes with the global y axis. What's the easiest way to do that?
Thanks!
4
votes
5answers
2k views
How can I compute the mass and moment of inertia of a polyhedron?
For use in a rigid body simulation, I want to compute the mass and inertia tensor (moment of inertia), given a triangle mesh representing the boundary of the (not necessarily convex) object, and ...
5
votes
5answers
851 views
Angular Momentum Transfer equations
Does anyone have any good references for equations which can be implemented relatively easily for how to compute the transfer of angular momentum between two rigid bodies?
I've been searching for ...