2021-11-30 21:29:18 -06:00
|
|
|
#include "editorstate.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
void (*asset_command)(char *asset) = print_file;
|
|
|
|
|
|
|
|
void print_file(char *file)
|
|
|
|
{
|
2022-11-18 12:03:07 -06:00
|
|
|
YughInfo("File path: %s", file);
|
2021-11-30 21:29:18 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
void set_new_model(char *modelPath)
|
|
|
|
{
|
|
|
|
printf("Loading new model: %s\n", modelPath);
|
|
|
|
curActor->model = GetExistingModel(modelPath);
|
|
|
|
strcpy(curActor->currentModelPath, modelPath);
|
|
|
|
}
|
|
|
|
|
|
|
|
*/
|