twsnmp / twsnmpfc

TWSNMP For Container
Apache License 2.0
10 stars 1 forks source link

マップの背景に画像を表示していると不要なp5のCanvasが増えていく #21

Closed twsnmp closed 1 year ago

twsnmp commented 1 year ago

マップの背景の画像を表示していると不要なp5のCanvasが増えていきます。 ノードのリストなどの幅が狭くなる現象の原因です。 image

twsnmp commented 1 year ago

よこに見えないキャンバスが増えています。

image

twsnmp commented 1 year ago

背景画像を読み込む時の処理でnew P5() で追加するものが原因

  if (backImage.Path){
    const _p5 = new P5()
    _p5.loadImage(url+'/backimage',(img)=>{
      backImage.Image = img
      mapRedraw = true
    })
  }
twsnmp commented 1 year ago

長時間マップを表示しておくとブラウザーのメモリリークが発生すると思います。

twsnmp commented 1 year ago

イメージをロードするたびにnew P5()しないように変更すれば解決しました。