Advertisement
KaiClavier

HideflagsFixer.cs

Mar 3rd, 2024
657
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.26 KB | None | 0 0
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4.  
  5. public class HideflagsFixer : MonoBehaviour
  6. {
  7.     public Texture tex;
  8.    
  9.     [ContextMenu("Fix")]
  10.     void Fix()
  11.     {
  12.         tex.hideFlags = HideFlags.None;
  13.     }
  14. }
  15.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement