You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import { RotatedRegion3 } from "@rbxts/rotatedregion3";
will compile as local RotatedRegion3 = TS.import(script, TS.getModule(script, "rotatedregion3")).RotatedRegion3
due to the way things are exported in the type definitions
As you can see, this will pretty much guarantee an error in game as RotatedRegion3 is not a member of the RotatedRegion3 class.
The text was updated successfully, but these errors were encountered:
import { RotatedRegion3 } from "@rbxts/rotatedregion3";
will compile as
local RotatedRegion3 = TS.import(script, TS.getModule(script, "rotatedregion3")).RotatedRegion3
due to the way things are exported in the type definitions
As you can see, this will pretty much guarantee an error in game as RotatedRegion3 is not a member of the RotatedRegion3 class.
The text was updated successfully, but these errors were encountered: