mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-25 02:58:02 +02:00
Added mouseover propery evaluation
This commit is contained in:
parent
63dc33a970
commit
85943230b1
9 changed files with 75 additions and 23 deletions
|
@ -123,6 +123,7 @@ namespace IDE
|
|||
public List<String> mSymbolSearchPath = new .() ~ DeleteContainerAndItems!(_);
|
||||
public List<String> mAutoFindPaths = new .() ~ DeleteContainerAndItems!(_);
|
||||
public int32 mProfileSampleRate = 1000;
|
||||
public bool mAutoEvaluateProperties = false;
|
||||
|
||||
public void Serialize(StructuredData sd)
|
||||
{
|
||||
|
@ -163,6 +164,7 @@ namespace IDE
|
|||
sd.RemoveIfEmpty();
|
||||
}
|
||||
sd.Add("ProfileSampleRate", mProfileSampleRate);
|
||||
sd.Add("AutoEvaluateProperties", mAutoEvaluateProperties);
|
||||
}
|
||||
|
||||
public void Deserialize(StructuredData sd)
|
||||
|
@ -201,6 +203,7 @@ namespace IDE
|
|||
}
|
||||
}
|
||||
sd.Get("ProfileSampleRate", ref mProfileSampleRate);
|
||||
sd.Get("AutoEvaluateProperties", ref mAutoEvaluateProperties);
|
||||
}
|
||||
|
||||
public void Apply()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue