mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-02-26 14:58:51 -06:00
Fix bugs in asset management
This commit is contained in:
@@ -367,12 +367,12 @@ void NumericalProperty<T>::setMaxValue(T value) {
|
||||
|
||||
template <typename T>
|
||||
T NumericalProperty<T>::steppingValue() const {
|
||||
return _steppingValue;
|
||||
return _stepping;
|
||||
}
|
||||
|
||||
template <typename T>
|
||||
void NumericalProperty<T>::setSteppingValue(T value) {
|
||||
_steppingValue = std::move(value);
|
||||
_stepping = std::move(value);
|
||||
}
|
||||
|
||||
template <typename T>
|
||||
|
||||
@@ -136,8 +136,8 @@ public:
|
||||
private:
|
||||
void setState(State state);
|
||||
|
||||
void requiredAssetChangedState(std::shared_ptr<Asset> a);
|
||||
void requestedAssetChangedState(std::shared_ptr<Asset> a);
|
||||
void requiredAssetChangedState(std::shared_ptr<Asset> a, Asset::State state);
|
||||
void requestedAssetChangedState(std::shared_ptr<Asset> a, Asset::State state);
|
||||
|
||||
bool isSyncResolveReady();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user