unreal.js
Version:
A pak reader for games like VALORANT & Fortnite written in Node.JS
13 lines (12 loc) • 541 B
TypeScript
import { FName } from "../../../objects/uobject/FName";
import { UMaterialInterface } from "../../exports/mats/UMaterialInterface";
import { Lazy } from "../../../../util/Lazy";
import { FAssetArchive } from "../../reader/FAssetArchive";
import { FMeshUVChannelInfo } from "./FMeshUVChannelInfo";
export declare class FStaticMaterial {
materialInterface: Lazy<UMaterialInterface>;
materialSlotName: FName;
importedMaterialSlotName: FName;
uvChannelData: FMeshUVChannelInfo;
constructor(Ar?: FAssetArchive);
}