Move initialization of some classes to headers

This commit is contained in:
Tomasz Chabora
2020-12-11 15:54:03 +01:00
parent 146316c441
commit 31cb04fbdd
18 changed files with 156 additions and 335 deletions

View File

@ -387,14 +387,3 @@ void PathFollow2D::set_loop(bool p_loop) {
bool PathFollow2D::has_loop() const {
return loop;
}
PathFollow2D::PathFollow2D() {
offset = 0;
h_offset = 0;
v_offset = 0;
path = nullptr;
rotates = true;
cubic = true;
loop = true;
lookahead = 4;
}