@@ -50,8 +50,8 @@ MaterialLayer* MaterialGenerator::GetLayer(const Guid& id, Node* caller)
|
||||
}
|
||||
|
||||
// Load asset
|
||||
Asset* asset = Assets.LoadAsync<MaterialBase>(id);
|
||||
if (asset == nullptr || asset->WaitForLoaded(10 * 1000))
|
||||
Asset* asset = Assets.Load<MaterialBase>(id);
|
||||
if (asset == nullptr)
|
||||
{
|
||||
OnError(caller, nullptr, TEXT("Failed to load material asset."));
|
||||
return nullptr;
|
||||
|
||||
@@ -285,8 +285,8 @@ void MaterialGenerator::ProcessGroupMaterial(Box* box, Node* node, Value& value)
|
||||
case 24:
|
||||
{
|
||||
// Load function asset
|
||||
const auto function = Assets.LoadAsync<MaterialFunction>((Guid)node->Values[0]);
|
||||
if (!function || function->WaitForLoaded())
|
||||
const auto function = Assets.Load<MaterialFunction>((Guid)node->Values[0]);
|
||||
if (!function)
|
||||
{
|
||||
OnError(node, box, TEXT("Missing or invalid function."));
|
||||
value = Value::Zero;
|
||||
@@ -299,7 +299,7 @@ void MaterialGenerator::ProcessGroupMaterial(Box* box, Node* node, Value& value)
|
||||
{
|
||||
if (_callStack[i]->Type == GRAPH_NODE_MAKE_TYPE(1, 24))
|
||||
{
|
||||
const auto callFunc = Assets.LoadAsync<MaterialFunction>((Guid)_callStack[i]->Values[0]);
|
||||
const auto callFunc = Assets.Load<MaterialFunction>((Guid)_callStack[i]->Values[0]);
|
||||
if (callFunc == function)
|
||||
{
|
||||
OnError(node, box, String::Format(TEXT("Recursive call to function '{0}'!"), function->ToString()));
|
||||
@@ -808,7 +808,7 @@ void MaterialGenerator::ProcessGroupFunction(Box* box, Node* node, Value& value)
|
||||
value = Value::Zero;
|
||||
break;
|
||||
}
|
||||
const auto function = Assets.LoadAsync<MaterialFunction>((Guid)functionCallNode->Values[0]);
|
||||
const auto function = Assets.Load<MaterialFunction>((Guid)functionCallNode->Values[0]);
|
||||
if (!_functions.TryGet(functionCallNode, graph) || !function)
|
||||
{
|
||||
OnError(node, box, TEXT("Missing calling function graph."));
|
||||
|
||||
Reference in New Issue
Block a user