Skip to content

Instantly share code, notes, and snippets.

@StagPoint
Created September 27, 2018 16:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save StagPoint/3b554a946c3c1b5acd8a9f06c4cb8df5 to your computer and use it in GitHub Desktop.
Save StagPoint/3b554a946c3c1b5acd8a9f06c4cb8df5 to your computer and use it in GitHub Desktop.
Use "#pragma warning disable 1591" to suppress "Missing XML comment for publicly visible type or member" warnings in Visual Studio when using Unity
// Disable all XML Comment warnings in this file, because Unity won't allow us to turn this bullshit off and keeps overwriting our settings //
#pragma warning disable 1591
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class NewBehaviourScript : MonoBehaviour
{
// Use this for initialization
private void Start()
{
}
// Update is called once per frame
private void Update()
{
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment