I hereby claim:
- I am seprab on github.
- I am seprab (https://keybase.io/seprab) on keybase.
- I have a public key ASDEQ5wVr3B_XfDJnlV9SPujY0y_QK-ygDQKvJbfum_13Ao
To claim this, I am signing this object:
import json | |
import requests as requests | |
from urllib.request import urlopen | |
def get_notes_from(version): | |
notes_url = version["releaseNotes"]["url"] | |
notes = urlopen(notes_url) | |
if notes.getcode() == 200: | |
print(f"Release notes successfully loaded for version {version['version']}") |
// Put this in an editor folder | |
using System; | |
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEditor; | |
using UnityEngine; | |
using UnityEngine.LowLevel; | |
using UnityEngine.Profiling; |
using System.Collections; | |
using System.Collections.Generic; | |
using System.IO; | |
using System.Linq; | |
using UnityEditor; | |
using UnityEditorInternal; | |
using UnityEngine; | |
using System.Text; | |
using System; |
using System.IO; | |
using System.Linq; | |
using UnityEngine; | |
using UnityEditor; | |
using System.Text; | |
using UnityEditor.Experimental; | |
public class AssetSizeEstimation | |
{ | |
private static readonly string[] ExcludeRules = {"com.unity."}; |
using UnityEngine; | |
namespace MyApp | |
{ | |
/// <summary> | |
/// the DeviceInfo class is used to collect all technical details to be included in any debug report. | |
/// this class can be easily encoded into JSON by JsonUtility.ToJson(new DeviceInfo()) | |
/// </summary> | |
public class DeviceInfo | |
{ |
I hereby claim:
To claim this, I am signing this object: