Skip to content

Commit

Permalink
quick bug fix and gitignore revise
Browse files Browse the repository at this point in the history
  • Loading branch information
yun-long committed Mar 8, 2021
1 parent 7d8ca90 commit 019535f
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 8 deletions.
6 changes: 0 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,8 @@ __pycache__
!.vscode/extensions.json

# General
build/
_build/
.sass-cache
_posts
_site
externals/*

#Flightmare
flightlib
flightrl
flighros
2 changes: 1 addition & 1 deletion flightlib/build/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
# Except this file
!.gitignore
!.clang-format
!setup.py
!setup.py
1 change: 0 additions & 1 deletion flightlib/build/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,3 @@
zip_fase=True,
url=None,
)

2 changes: 2 additions & 0 deletions flightlib/src/bridges/unity_bridge.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,8 @@ bool UnityBridge::addStaticObject(std::shared_ptr<StaticObject> static_object) {
static_objects_.push_back(static_object);
settings_.objects.push_back(object_t);
pub_msg_.objects.push_back(object_t);
//
return true;
}

bool UnityBridge::handleOutput() {
Expand Down
1 change: 1 addition & 0 deletions flightlib/src/objects/quadrotor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,7 @@ bool Quadrotor::setWorldBox(const Ref<Matrix<3, 2>> box) {
return false;
}
world_box_ = box;
return true;
}


Expand Down

0 comments on commit 019535f

Please sign in to comment.