Quote:
Originally Posted by TruB
actually.. if there is not an exploasion.. a bullet wont make you fly back like in the movies.. if you get shoot with a deadly bullet you would likely just fall on your knees..
|
What I was referring to was this
(honor to the memory of Frederico Garcia from the International Militias against the fascists in the Spanish civil war. Photo (c) Robert Capa)
Bullets caught on some point of your body make this part flinch. If you catched a bullet in your right arm, your right arm would flinch back. Ragdolls physics are needed for that.
@SFX: instead of using this
Code:
#define BIT0 1
#define BIT1 2
#define BIT2 4
#define BIT3 8
#define BIT4 16
#define BIT5 32
#define BIT6 64
#define BIT7 128
you can do
Code:
#define BIT0 (1 << 0)
#define BIT1 (1 << 1)
#define BIT2 (1 << 2)
#define BIT3 (1 << 3)
#define BIT4 (1 << 4)
#define BIT5 (1 << 5)
#define BIT6 (1 << 6)
#define BIT7 (1 << 7)
it's easier