mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-05-07 20:09:58 -05:00
Remove return values from initialize and deinitialize functions
This commit is contained in:
@@ -100,15 +100,13 @@ KameleonPlane::KameleonPlane(const ghoul::Dictionary& dictionary)
|
||||
|
||||
KameleonPlane::~KameleonPlane() {}
|
||||
|
||||
bool KameleonPlane::deinitialize() {
|
||||
void KameleonPlane::deinitialize() {
|
||||
IswaCygnet::deinitialize();
|
||||
_fieldlines.set(std::vector<int>());
|
||||
return true;
|
||||
}
|
||||
|
||||
bool KameleonPlane::initialize(){
|
||||
|
||||
if(!_data->groupName.empty()){
|
||||
void KameleonPlane::initialize() {
|
||||
if (!_data->groupName.empty()) {
|
||||
initializeGroup();
|
||||
}
|
||||
|
||||
@@ -174,8 +172,6 @@ bool KameleonPlane::initialize(){
|
||||
_group->updateGroup();
|
||||
}
|
||||
updateTextureResource();
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
bool KameleonPlane::createGeometry() {
|
||||
|
||||
Reference in New Issue
Block a user