PS2 Bios Download for PCSX2 & AetherSX2 Emulators | For All Regions
PS2 Bios Download (OFFICIAL) for PCSX2 & AetherSX2 Emulators
--
scph5500.bin 26-Aug-2018 20:47 512.0K
scph5501.bin 26-Aug-2018 20:47 512.0K
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using UnityEditor; | |
| using UnityEditor.Callbacks; | |
| using UnityEditor.Compilation; | |
| using UnityEngine; | |
| public static class FlyoutProjectWindow | |
| { |
| using System; | |
| using System.Collections.Generic; | |
| using System.Diagnostics; | |
| using System.IO; | |
| using System.Text; | |
| using UnityEditor; | |
| using UnityEngine; | |
| using Debug = UnityEngine.Debug; | |
| using Object = UnityEngine.Object; |
PS2 Bios Download for PCSX2 & AetherSX2 Emulators | For All Regions
PS2 Bios Download (OFFICIAL) for PCSX2 & AetherSX2 Emulators
--
scph5500.bin 26-Aug-2018 20:47 512.0K
scph5501.bin 26-Aug-2018 20:47 512.0K
| /* MIT License | |
| Copyright (c) 2016 RedBlueGames | |
| Code written by Doug Cox | |
| */ | |
| using System; | |
| using UnityEngine; | |
| /// <summary> | |
| /// GitException includes the error output from a Git.Run() command as well as the |
| static void drawString(string text, Vector3 worldPos, Color? colour = null) { | |
| UnityEditor.Handles.BeginGUI(); | |
| if (colour.HasValue) GUI.color = colour.Value; | |
| var view = UnityEditor.SceneView.currentDrawingSceneView; | |
| Vector3 screenPos = view.camera.WorldToScreenPoint(worldPos); | |
| Vector2 size = GUI.skin.label.CalcSize(new GUIContent(text)); | |
| GUI.Label(new Rect(screenPos.x - (size.x / 2), -screenPos.y + view.position.height + 4, size.x, size.y), text); | |
| UnityEditor.Handles.EndGUI(); | |
| } |