Don't constrain ped position

This commit is contained in:
in0finite 2019-06-23 23:09:41 +02:00
parent 88688bea7d
commit f684189be2
3 changed files with 2 additions and 4 deletions

View file

@ -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;
}
*/
}

View file

@ -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

View file

@ -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 ? ;