mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-13 07:34:45 +00:00
Initial implementation of the Asset Browser tool.
This commit is contained in:
parent
d22e7c98e1
commit
1278cf22a2
38 changed files with 8518 additions and 0 deletions
|
|
@ -0,0 +1,17 @@
|
|||
function AssetBrowser_selectPackage::onWake(%this)
|
||||
{
|
||||
AssetBrowser_SelectPackageWindow-->packageList.refresh();
|
||||
}
|
||||
|
||||
function SelectPackage_NewAssetPackageBtn::onClick(%this)
|
||||
{
|
||||
Canvas.pushDialog(AssetBrowser_AddPackage);
|
||||
AssetBrowser_addPackageWindow.selectWindow();
|
||||
|
||||
AssetBrowser_AddPackage.callback = "AssetBrowser_selectPackage.newPackageAdded();";
|
||||
}
|
||||
|
||||
function AssetBrowser_selectPackage::newPackageAdded(%this)
|
||||
{
|
||||
AssetBrowser_SelectPackageWindow-->packageList.refresh();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue