Guest User

Untitled

a guest
Sep 23rd, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. module gui;
  2.  
  3. import dplug.pbrwidgets;
  4.  
  5. /** module dplug.pbrwidgets.pbrbackgroundgui に定義
  6. class PBRBackgroundGUI(string baseColorPath, // 一番下にでてくるRGB背景画像(png/jpg)
  7. string emissivePath, // 光の強さを指定するグレー画像
  8. string materialPath, // 金属っぽさを指定するグレー画像
  9. string physicalPath, // 物理レンダリングの強さを指定するグレー画像
  10. string depthPath, // 3Dっぽい質感を出すための深さを指定するグレー画像
  11. string skyboxPath, // 反射光を作るときの向かい側の画像(空とか)
  12. string absoluteGfxDirectory) // デバッグ用の画像フォルダ指定
  13. */
  14. class SimpleDelayGUI : PBRBackgroundGUI!("black.png", "black.png", "black.png",
  15. "black.png", "black.png", "black.png",
  16. "")
Add Comment
Please, Sign In to add comment