File size: 269 Bytes
ac7030c
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
export function parseAssetToCheckIfGaussian(url: string) {
  let ext = url.toLowerCase().split(".").pop() || ""
  ext = ext.split("?").shift() || ""

  if (ext === "splatv" || ext === "splat" || ext === "gsplat" || ext === "ply") {
    return true
  }

  return false
}