1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

がちもとさんAdvent Calendar 2022

Day 11

HoloLens2でPDF Rendererを使うとすべてのページが表示されてしまう件について

Last updated at Posted at 2022-12-10

はじめに

HoloLens2でPDF Rendererを使うとすべてのページが表示されてしまいます。
スクロールでのページめくりをやめ、ボタンによるページめくりを実装しましたが、ページめくりの際に、若干ズレた場合、前後のページが見えてしまう場合があります。そこで、現在のページのみ表示し、他のページはきちんと黒塗りするように変更しました。

導入

PDFViewer.csの2464~2465行目

if (m_BookmarksViewer.gameObject.activeInHierarchy)
    m_BookmarksViewer.DoUpdate();

のあとに以下を追記

    for(int i = 0; i < m_PageCount;i++){
        if (CurrentPageIndex != i){
            m_Internal.PageContainer.GetChild(i).gameObject.GetComponent<RawImage>().color = new Color(0.0f, 0.0f, 0.0f, 0.0f);
        }else{
            m_Internal.PageContainer.GetChild(i).gameObject.GetComponent<RawImage>().color = new Color(1.0f, 1.0f, 1.0f, 1.0f);    
        }
    }

お疲れ様でした

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?