Property Type
Type
Gets the resource type inferred from its location and extension.
public SkillResourceType Type { get; }
Property Value
Examples
Checking the resource type:
var resource = skill.GetResource("scripts/validate.py");
if (resource.Type == SkillResourceType.Script)
{
Console.WriteLine("This is a script resource");
}