" @kirakira@furry.engineer @monoidmusician oh. oh no. oh no. i hadn’t even thought about the implications regarding redirects
going to exploit this in my engine by making different instances of the same class in order to differentiate them in the resource handler
import { Meshes as EnvironmentMeshes } from './meshes.js'
import { Meshes as EntityMeshes } from './/meshes.js'
engine.getResource(EnvironmentMeshes)
engine.getResource(EntityMeshes)

it’s really weird to me that the import path influences the identity of a type in javascript (at least in firefox, anyway)
import { AType } from './type.js'
import { AType as AType2 } from './/type.js'
import { AType as AType3 } from './type.js'
console.log(AType === AType2) // false
console.log(AType === AType3) // true
Artist: grs-
Media: original
Source: https://twitter.com/G_R_S__/status/1756053380949065893
@rowan woa,,,,, it's the cube from the hit movie cube (1997)
@catgirl_so
awawaaraa 💜💕
these are advanced techniques that I’m sharing with it