在导入3d max模型的时候报错: 3ds Max could not be found.Make sure that 3ds Max is installed and the max file has 3ds Max as its 'Open with' application! 造成的原因是因为我直接导入.max文件但是我电脑上面没有安装3Dmax. unity需要导入.fbx才行.
在我们做项目的过程中 经常会有预设中出现空的脚本 例如: 导致的原因是因为 脚本的丢失 现在我们来做一个检查工程中有空脚本的预设工具 老规矩直接上代码 放到工程就能用 using UnityEngine; using UnityEditor; using System.IO; using System.Collections.Generic; public class PrefabTool : EditorWindow { [MenuItem("Prefab Tool/Check Missing
导入Keras函数模型 假设使用Keras的函数API开始定义一个简单的MLP: from keras.models import Model from keras.layers import Dense, Input inputs = Input(shape=(100,)) x = Dense(64, activation='relu')(inputs) predictions = Dense(10, activation='softmax')(x) model = Model(inputs=
#if UNITY_EDITOR using System.Collections; using System.Collections.Generic; using System.IO; using System.Text; using UnityEditor; using UnityEngine; public class AnimImport : AssetPostprocessor { StringBuilder sb = new StringBuilder(); //fbx动画导入前的处