This gist is now a repo: https://github.com/mikerochip/addressables-training-manual
Easier to remember the URL that way!
| #!/bin/bash -e | |
| if [ -z "$DEPLOYMENT" ]; then | |
| read -rp "Deployment Name (set DEPLOYMENT to skip this): " DEPLOYMENT | |
| if [ -z "$DEPLOYMENT" ]; then | |
| echo "Missing DEPLOYMENT" | |
| exit 1 | |
| fi | |
| fi |
| #!/bin/bash -e | |
| command -v gh > /dev/null 2>&1 || { echo >&2 "\n'gh' was not found on your path. Install the GitHub CLI at https://github.com/cli/cli#installation\n"; exit 2; } | |
| # Prompt for inputs | |
| if [ -z "$OWNER" ]; then | |
| read -rp "GitHub Owner (set OWNER to skip this): " OWNER | |
| if [ -z "$OWNER" ]; then | |
| echo "Missing OWNER" | |
| exit 1 |
| #!/bin/bash -e | |
| # Prompt for inputs | |
| if [ -z "$OWNER" ]; then | |
| read -rp "GitHub Owner (set OWNER to skip this): " OWNER | |
| if [ -z "$OWNER" ]; then | |
| echo "Missing OWNER" | |
| exit 1 | |
| fi | |
| fi |
| terraform { | |
| required_providers { | |
| aws = { | |
| source = "hashicorp/aws" | |
| version = "~> 6.0" | |
| } | |
| } | |
| } | |
| data "aws_caller_identity" "current" {} |
| public class LruCache<TKey, TValue> where TKey : IEquatable<TKey> | |
| { | |
| #region Private Types | |
| private struct Entry | |
| { | |
| public TKey Key { get; set; } | |
| public TValue Value { get; set; } | |
| } | |
| #endregion | |
| using System; | |
| using System.Collections; | |
| using UnityEditor; | |
| namespace MikeSchweitzer | |
| { | |
| public static class SerializedPropertyExtensions | |
| { | |
| public static T[] GetAllValues<T>(this SerializedProperty property) | |
| { |
| using HutongGames.PlayMakerEditor; | |
| using UnityEditor; | |
| namespace OrgName.ProjectName.Unity.Editor.AnnoyingStuff | |
| { | |
| public class PluginSuppressor : AssetPostprocessor | |
| { | |
| [InitializeOnLoadMethod] | |
| private static void Initialize() | |
| { |
| # directories | |
| **/bin/ | |
| **/obj/ | |
| **/out/ | |
| # files | |
| Dockerfile* | |
| **/*.md |
| using System; | |
| using System.Collections; | |
| using System.Collections.Generic; | |
| using System.Reflection; | |
| using Newtonsoft.Json; | |
| using Newtonsoft.Json.Serialization; | |
| namespace Company.Project.Serialization | |
| { | |
| public class LeanContractResolver : DefaultContractResolver |
This gist is now a repo: https://github.com/mikerochip/addressables-training-manual
Easier to remember the URL that way!