New Community Ranking System
Our Community ranking system has recently been updated. You may notice changes in user rankings and receive system messages or notifications. If you have questions about how the new ranking works, please refer to the announcement post for more details (click here).
Resource files
Digital Twin
This knowledge base is addressing usage of software Experior, Machine Expert Twin and future Automation Expert Twin. These softwares are used to create smaller instances of digital twins for use in industrial automation, warehouse management, design & engineering with more..
Search in
Improve your search experience:
Exact phrase→Use quotes " "(e.g., "error 404")
Wildcard→Use * for partial words(e.g., build*, *tion)
AND / OR→Combine keywords(e.g., login AND error, login OR sign‑in)
Keep it short→Use 2–3 relevant words, not full sentences
Filters→Narrow results by section(Knowledge Base, Users, Products)
Send a co-worker an invite to the portal.Just enter their email address and we'll connect them to register. After joining, they will belong to the same company.
You have entered an invalid email address. Please re-enter the email address.
This co-worker has already been invited to the Exchange portal. Please invite another co-worker.
Please enter email address
Send InviteCancel
Invitation Sent
Your invitation was sent.Thanks for sharing Exchange with your co-worker.
Some formats are not fully supported as embedded resources as they reference other files for data.
Such as .obj files that reference a .mtl file for their color data. If you have problems loading your resources, try referencing it using the filepath instead of the EmbeddedResourceLoader.
Our Import functionality uses the Assimp open source library, some format features may not be supported. If you run into issues importing your files, try simplifying your imported object. For example, removing an armature or other unnecessary components. See “Import issues” below for notes about unsupported features or issues you may run into when trying to import certain files.
Once a resource has been added to the appropriate folder (Icon/Mesh), set the propertyBuild Action to Embedded Resource.
Accessing resources in the code
Resources are accessed through the public static fields contained in the Internal classCommon located in Create.cs
internal class Common
{
public static Experior.Core.Resources.EmbeddedImageLoader EmbeddedImageLoader;
public static Experior.Core.Resources.EmbeddedResourceLoader EmbeddedResourceLoader;
}
Getting access to images:
public override ImageSource Image => Common.EmbeddedImageLoader.Get("Example.png");
Getting access to CAD/Mesh files:
var exampleMesh = new Experior.Core.Parts.Model(Common.EmbeddedResourceLoader.Get("Example.stl"));
Import issues
We do not currently support COLLADA (.dae) files containing armatures.
.obj files as embedded resources do not display any color/shading, since they currently have no way of referencing their .mtl file.