You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Before starting, you should be confortable with unreal naming conventions regarding assets:
8
+
9
+
* UObject, is the root of the vast majority of Unreal C++ classes. Materials, Textures, Blueprints, all inherit from UObject
10
+
* Asset is a UObject that has been serialized in some form. You see Assets in the content browser
11
+
* Package is a file containing one or more more Assets. The blessed Unreal pattern is to have one Asset per Package, but you can have more than one in a single one. Packages are stored in the .uasset files in the Content directory.
0 commit comments