Пример #1
0
	void ArrayEditor<ElementType>::ResetWidget()
	{
		DeleteEditors();
		DeleteInternalArray();
		mBodyLayout->Clear();
		AbstractValueEditor::ResetWidget();
		UnlockUpdates();
	}
Пример #2
0
	void ArrayEditor<ElementType>::Submit()
	{
		SubmitEditors();
		SubmitInternalArray();
		UpdateInternalArray();
		UnlockUpdates();
		UpdateEditors();
	}
void UEnvironmentQueryGraph::Initialize()
{
	Super::Initialize();
	
	LockUpdates();
	SpawnMissingNodes();
	CalculateAllWeights();
	UnlockUpdates();
}
Пример #4
0
	bool ArrayEditor<ElementType>::OnEventButtonRevertPressed(const CEGUI::EventArgs& arg)
	{
		OC_UNUSED(arg);
		UnlockUpdates();
		return true;
	}