mirror of
https://bitbucket.org/mfeemster/fractorium.git
synced 2025-07-17 05:34:50 -04:00
--User changes
-Add new Blur Cuve field which controls how blurring increases when moving from the center out. --Bug fixes -Undo Y axis flipping from previous commit, it never worked and is not worth the effort. --Code changes -The new field is a member of Ember and is called m_BlurCurve, and the corresponding xml field is called "blur_curve".
This commit is contained in:
@ -230,6 +230,7 @@ public slots:
|
||||
void OnPitchChanged(double d);
|
||||
void OnYawChanged(double d);
|
||||
void OnDepthBlurChanged(double d);
|
||||
void OnBlurCurveChanged(double d);
|
||||
void OnSpatialFilterWidthChanged(double d);//Filter.
|
||||
void OnSpatialFilterTypeComboCurrentIndexChanged(const QString& text);
|
||||
void OnTemporalFilterWidthChanged(double d);
|
||||
@ -487,6 +488,7 @@ private:
|
||||
DoubleSpinBox* m_PitchSpin;
|
||||
DoubleSpinBox* m_YawSpin;
|
||||
DoubleSpinBox* m_DepthBlurSpin;
|
||||
DoubleSpinBox* m_BlurCurveSpin;
|
||||
DoubleSpinBox* m_SpatialFilterWidthSpin;//Filter.
|
||||
StealthComboBox* m_SpatialFilterTypeCombo;
|
||||
DoubleSpinBox* m_TemporalFilterWidthSpin;
|
||||
|
Reference in New Issue
Block a user