Inheritance: UnityEngine.MonoBehaviour
コード例 #1
0
ファイル: KOSTextEditPopup.cs プロジェクト: vincentBenet/KOS
 public void AttachTo(TermWindow termWindow, Volume attachVolume, GlobalPath path)
 {
     term          = termWindow;
     WindowRect    = new Rect(0, 0, 470, 280); // will be resized and moved in onGUI.
     frozen        = false;
     loadingVolume = attachVolume;
     loadingPath   = path;
     LoadContents(attachVolume, path);
 }
コード例 #2
0
 public void AttachTo(TermWindow termWindow, Volume attachVolume, string attachFileName = "")
 {
     term            = termWindow;
     outerCoords     = new Rect(0, 0, 0, 0); // will be resized and moved in onGUI.
     frozen          = false;
     loadingVolume   = attachVolume;
     loadingFileName = attachFileName;
     LoadContents(attachVolume, attachFileName);
 }
コード例 #3
0
ファイル: KOSTextEditPopup.cs プロジェクト: KSP-KOS/KOS
 public void AttachTo(TermWindow termWindow, Volume attachVolume, GlobalPath path)
 {
     term = termWindow;
     WindowRect = new Rect(0, 0, 470, 280); // will be resized and moved in onGUI.
     frozen = false;
     loadingVolume = attachVolume;
     loadingPath = path;
     LoadContents(attachVolume, path);
 }
コード例 #4
0
ファイル: KOSTextEditPopup.cs プロジェクト: EbbiDos/KOS
 public void AttachTo( TermWindow termWindow, Volume attachVolume, string attachFileName = "" )
 {
     term = termWindow;
     outerCoords = new Rect(0,0,0,0); // will be resized and moved in onGUI.
     frozen = false;
     loadingVolume = attachVolume;
     loadingFileName = attachFileName;
     LoadContents(attachVolume, attachFileName);
 }