mirror of
				https://bitbucket.org/mfeemster/fractorium.git
				synced 2025-11-03 17:50:27 -05:00 
			
		
		
		
	--User changes
-Add backward compatibility option for the following variations: cos, cosh, cot, coth, csc, csch, sec, sech, sin, sinh, tan, tanh. -Add the ability to re-order variations by dragging them in the Info tab.
This commit is contained in:
		@ -122,6 +122,8 @@ void FractoriumSettings::EnsureDefaults()
 | 
			
		||||
 | 
			
		||||
	if (value(SHAREDTEXTURE).toString() == "")//Set this to true if the setting is missing because it only needs to be false for the rare system that has problems with shared textures.
 | 
			
		||||
		SharedTexture(true);
 | 
			
		||||
 | 
			
		||||
	Compat::m_Compat = Flam3Compat();
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/// <summary>
 | 
			
		||||
@ -200,6 +202,9 @@ void FractoriumSettings::LoadLast(bool b)                        { setValue(LOAD
 | 
			
		||||
bool FractoriumSettings::RotateAndScale()                        { return value(ROTSCALE).toBool();                                        }
 | 
			
		||||
void FractoriumSettings::RotateAndScale(bool b)                  { setValue(ROTSCALE, b);                                                  }
 | 
			
		||||
 | 
			
		||||
bool FractoriumSettings::Flam3Compat()                           { return value(FLAM3COMPAT).toBool();                                     }
 | 
			
		||||
void FractoriumSettings::Flam3Compat(bool b)                     { setValue(FLAM3COMPAT, b);                                               }
 | 
			
		||||
 | 
			
		||||
/// <summary>
 | 
			
		||||
/// Sequence generation settings.
 | 
			
		||||
/// </summary>
 | 
			
		||||
 | 
			
		||||
		Reference in New Issue
	
	Block a user