This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Made by: HolyFot | |
//License: CC0 - https://creativecommons.org/share-your-work/public-domain/cc0/ | |
//Note: ToggleC scripts must be childs of ToggleGroupC | |
//Note: "TargetGraphic" is a separate child image. | |
//Version 1.1 (Fix warnings & selection bug) | |
using UnityEngine; | |
using UnityEngine.Events; | |
using UnityEngine.EventSystems; | |
using UnityEngine.UI; | |
using System.Collections; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Made by: HolyFot | |
//License: CC0 - https://creativecommons.org/share-your-work/public-domain/cc0/ | |
//Notes: Handles negative to positive ranges too. | |
using System; | |
using UnityEngine; | |
using UnityEngine.UI; | |
[RequireComponent(typeof(Slider))] | |
public class SliderPercent : MonoBehaviour | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Made by: HolyFot | |
// Very Simple INI Parser/Writer. | |
// Ignores Comments and is Case Sensitive. | |
using UnityEngine; | |
using System; | |
using System.IO; | |
using System.Text; | |
using System.Collections.Generic; | |
public class SimpleIni |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Displays: actual FPS, KBs In/Out for Forge, System Info | |
//Author: HolyFot | |
//License: CC0 | |
using UnityEngine; | |
using System; | |
using System.Collections; | |
using BeardedManStudios.Forge.Networking; | |
using BeardedManStudios.Forge.Networking.Unity; | |
public class FPSNetStats : MonoBehaviour |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//EXAMPLE USAGE: | |
void OnEnable() | |
{ | |
if (MapLoadDetector.Instance != null) | |
MapLoadDetector.Instance.onMap1LoadedCall += OnMapLoaded; | |
} | |
void OnDisable() | |
{ | |
if (MapLoadDetector.Instance != null) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Made by: HolyFot | |
//License: CC0 - https://creativecommons.org/share-your-work/public-domain/cc0/ | |
//For SkinneMeshRenderers (Characters/NPCs/Etc). This script was made to just swap the mesh/materials for LODs, since Unity's LOD Group to change the entire object which isn't ideal for weapons/armor/objects. | |
//This is a roughdraft, but works. | |
using UnityEngine; | |
using System; | |
using System.Collections.Generic; | |
//[ExecuteInEditMode] | |
public class CharacterLOD : MonoBehaviour |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Example | |
public YesNoWindow yesNoWindow; | |
public void ExitGame() | |
{ | |
if (yesNoWindow != null) | |
{ | |
yesNoWindow.onYesClickCall += ExitGame2; | |
yesNoWindow.ShowYesNo("Are you sure you wish to quit the game?"); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Example | |
public void AddFriend() | |
{ | |
//Show Input Window | |
if (inputWindow != null) | |
{ | |
inputWindow.onOkClickCall += AddFriend2; | |
inputWindow.ShowInputWindow("Username to add as friend:"); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Made by: HolyFot | |
//License: CC0 - https://creativecommons.org/share-your-work/public-domain/cc0/ | |
//For MeshRenderers (Basic Objects). Quickly swaps the mesh/materials for LODs, replacement for LOD Group. | |
//This is a roughdraft, but works. | |
using UnityEngine; | |
using System; | |
using System.Collections.Generic; | |
//[ExecuteInEditMode] | |
public class SimpleLOD : MonoBehaviour |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnityEngine; | |
using System.Collections; | |
using System.Collections.Generic; | |
using System.Threading; | |
using Ist; | |
using BeardedManStudios.Network; | |
public class CubeBuilding : MonoBehaviour | |
{ | |
public enum DataTransferMode |
OlderNewer