Skip to content

Instantly share code, notes, and snippets.

View anomal3's full-sized avatar
🏠
Working from home

Roman anomal3

🏠
Working from home
View GitHub Profile
@dpid
dpid / how-to-notarize-unity-for-macos.md
Last active January 22, 2026 18:25
How to notarize a Unity build for MacOs 10.15 Catalina

How to notarize a Unity build for macOs 10.15 Catalina

As of January 2020, all apps running on macOs 10.15 Catalina are required to be notarized. For Unity games distributed outside the Mac App Store, such as with Steam, the notarization process is done post build using a series of Xcode command line tools.

Prerequisites

  • a Mac that is compatible with macOs 10.15 Catalina :
    • MacBook (2015 or newer)
    • MacBook Air (2012 or newer)
  • MacBook Pro (2012 or newer)
@droganaida
droganaida / ScrollViewAdapterConnected.cs
Created November 12, 2017 11:41
Unity3d C# ScrollView Adapter with Internet connection
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
public class ScrollViewAdapterConnected : MonoBehaviour {
public RectTransform prefarb;
public Text countText;
public RectTransform content;