Glen Whitney
e7361f94a7
With this loaded in under the Firefox debugger, one can see linked WRL files and Java Geometry Applets on arbitrary web pages. This represents significant progress on #28, but getting more controls and getting it to work in other browsers is still on deck. Reviewed-on: #38 Co-authored-by: Glen Whitney <glen@studioinfinity.org> Co-committed-by: Glen Whitney <glen@studioinfinity.org>
8 lines
229 B
TypeScript
8 lines
229 B
TypeScript
// Hack to move GGBApplet into the global namespace
|
|
// (since we are getting it from a script)
|
|
import {GGBApplet as moduleGGBApplet} from './geotypes/entry.ts'
|
|
declare global {
|
|
class GGBApplet extends moduleGGBApplet {
|
|
}
|
|
}
|