Fixed curve baking, now always start at origin point
This commit is contained in:
parent
c0576c64da
commit
08b93da28a
|
@ -543,6 +543,7 @@ void Curve2D::_bake() const {
|
||||||
Vector2 pos=points[0].pos;
|
Vector2 pos=points[0].pos;
|
||||||
List<Vector2> pointlist;
|
List<Vector2> pointlist;
|
||||||
|
|
||||||
|
pointlist.push_back(pos); //start always from origin
|
||||||
|
|
||||||
for(int i=0;i<points.size()-1;i++) {
|
for(int i=0;i<points.size()-1;i++) {
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue