Super easy-to-use PC system file pop-up window and packager window settings


foreword

Simply record the useful tools on the PC side.


1. Window Controller

The exe packaged on the PC side usually has many requirements that Unity cannot meet internally (generally, it is troublesome to configure with win dll), and UniWindowController can quickly help developers complete window adaptation and weird requirements.
Basic window adaptation can be achieved with a few simple lines of code.

using Kirurobo;
UniWindowController uniwinc = UniWindowController.current;
uniwinc.isTransparent = false;
uniwinc.isZoomed = true;

For detailed functions, please import the sample scene package to view.

2. System file pop-up window

Many industrial software will need to call the pop-up windows of win to implement operations such as importing and loading. StandaloneFileBrowser is an old software, but it is simple and convenient to use, and has fewer restrictions than directly calling the dll of win.


Summarize

Nothing to conclude.

Guess you like

Origin blog.csdn.net/qq_41912124/article/details/130626962