2OZGXOFLTXALS34QEIQ2F6VT7AUWYK7FVXUUDX66GZT5I7FUNPVAC
CWCOGTXQXEQPK6O4TQFCIPDVMZD7WHOBGMIG2DTSO6BEBFEADZIQC
PZNEDCRDS5IBR7QDPHTW5HZRMQAZFIF7VB3IKWPZDC7IALHZKHWAC
3UFL673QX2JG7KHTAM7DFH4BBYVHDNMXBS2RW45G3JBNFZFLSRRQC
import { TooltippableAreaComponent } from "./TooltippableAreaComponent";
import { TooltippableAreaComponent, TooltippableAreaComponentType } from "./TooltippableAreaComponent";
public tooltippableArea: LifecycleHandlerType<any, any>
public tooltippableArea: TooltippableAreaComponentType
this.tooltippableArea = new TooltippableAreaComponent({});
this.tooltippableArea = new TooltippableAreaComponent({ hitArea: this.container.hitArea });
this.tooltippableArea = new TooltippableAreaComponent({
hitArea: this.container.hitArea
});
this.tooltippableArea._update({});
this.tooltippableArea._update({ hitArea: this.container.hitArea });
this.tooltippableArea._update({
type Props = {}
type Props = { hitArea: Pixi.IHitArea; delaySeconds?: number;}type State = {
type Props = {
hitArea: Pixi.IHitArea;
delaySeconds?: number;
}
type State = {
type State = {}
this.container.interactive = true; this.container.hitArea = props.hitArea;
this.container.interactive = true;
this.container.hitArea = props.hitArea;
this.container.addListener('pointerover', (event: Pixi.InteractionEvent) => { console.log('got here in toolltippable'); })
this.container.addListener('pointerover', (event: Pixi.InteractionEvent) => {
console.log('got here in toolltippable');
})