mirror of
https://github.com/GTA-ASM/SanAndreasUnity
synced 2024-11-22 12:03:04 +00:00
Don't constrain ped position
This commit is contained in:
parent
88688bea7d
commit
f684189be2
3 changed files with 2 additions and 4 deletions
|
@ -382,6 +382,7 @@ namespace SanAndreasUnity.Behaviours
|
|||
|
||||
// Constrain to stay inside map
|
||||
|
||||
/*
|
||||
if (transform.position.x < -3000)
|
||||
{
|
||||
var t = transform.position;
|
||||
|
@ -406,6 +407,7 @@ namespace SanAndreasUnity.Behaviours
|
|||
t.z = 3000;
|
||||
transform.position = t;
|
||||
}
|
||||
*/
|
||||
|
||||
}
|
||||
|
||||
|
|
|
@ -18,8 +18,6 @@
|
|||
|
||||
- max num players should be configurable
|
||||
|
||||
- add current vehicle info to "misc" stats - it will display: name, velocity, num wheels, num doors, num peds inside, input, mass, drag, rigid body state, sync interval,
|
||||
|
||||
- display players on minimap
|
||||
|
||||
- port the whole UI to multiplayer
|
||||
|
|
|
@ -24,8 +24,6 @@
|
|||
|
||||
- Update controls window
|
||||
|
||||
- Display position and velocity in misc stats
|
||||
|
||||
- Add option to change fixed delta time ?
|
||||
|
||||
- Crouching: adjust camera aim offset ? ;
|
||||
|
|
Loading…
Reference in a new issue