mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-15 08:34:40 +00:00
various misc fixes from merge.
This commit is contained in:
parent
17231ca9fb
commit
b0549118b6
4 changed files with 5 additions and 4 deletions
|
|
@ -284,8 +284,8 @@ class String::StringData : protected StringDataImpl
|
||||||
delete [] mUTF16;
|
delete [] mUTF16;
|
||||||
}
|
}
|
||||||
|
|
||||||
void* TORQUE_NOINLINE operator new(size_t size, U32 len);
|
TORQUE_NOINLINE void* operator new(size_t size, U32 len);
|
||||||
void* TORQUE_NOINLINE operator new( size_t size, U32 len, DataChunker& chunker );
|
TORQUE_NOINLINE void* operator new( size_t size, U32 len, DataChunker& chunker );
|
||||||
void operator delete(void *);
|
void operator delete(void *);
|
||||||
|
|
||||||
bool isShared() const
|
bool isShared() const
|
||||||
|
|
|
||||||
|
|
@ -340,7 +340,7 @@ function AssetBrowser::onShapeAssetEditorDropped(%this, %assetDef, %position)
|
||||||
|
|
||||||
%newStatic = new TSStatic()
|
%newStatic = new TSStatic()
|
||||||
{
|
{
|
||||||
position = %pos;
|
position = %position;
|
||||||
shapeAsset = %assetId;
|
shapeAsset = %assetId;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -515,6 +515,7 @@ function ESettingsWindow::getAssetEditingSettings(%this)
|
||||||
SettingsInspector.addSettingsField("Assets/New/alwaysPromptModuleTarget", "Always Prompt Target Module", "bool", "If off, use the default module");
|
SettingsInspector.addSettingsField("Assets/New/alwaysPromptModuleTarget", "Always Prompt Target Module", "bool", "If off, use the default module");
|
||||||
SettingsInspector.endGroup();
|
SettingsInspector.endGroup();
|
||||||
|
|
||||||
|
%formattedConfigList = "";
|
||||||
for(%i=0; %i < ImportAssetWindow.importConfigsList.Count(); %i++)
|
for(%i=0; %i < ImportAssetWindow.importConfigsList.Count(); %i++)
|
||||||
{
|
{
|
||||||
%configName = ImportAssetWindow.importConfigsList.getKey(%i);
|
%configName = ImportAssetWindow.importConfigsList.getKey(%i);
|
||||||
|
|
|
||||||
|
|
@ -298,7 +298,7 @@ function TerrainMaterialDlg::changeTerrainMatMapAsset(%this)
|
||||||
|
|
||||||
%targetMap.setBitmap( %image );
|
%targetMap.setBitmap( %image );
|
||||||
|
|
||||||
%targetMapName = %mapName @ "AssetId";
|
%targetMapName = %targetMap @ "AssetId";
|
||||||
%targetMapName.setText(%imgAsset);
|
%targetMapName.setText(%imgAsset);
|
||||||
|
|
||||||
TerrainMaterialDlg.matDirty = true;
|
TerrainMaterialDlg.matDirty = true;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue