Skip to content

Instantly share code, notes, and snippets.

View ercantomac's full-sized avatar
:shipit:

Ercan Tomac ercantomac

:shipit:
  • Genova, Italy
View GitHub Profile
@Kryzarel
Kryzarel / EasingFunctions.cs
Last active May 7, 2024 02:09
C# Easing Functions
using System;
namespace Kryz.Tweening
{
// Made with the help of this great post: https://joshondesign.com/2013/03/01/improvedEasingEquations
// --------------------------------- Other Related Links --------------------------------------------------------------------
// Original equations, bad formulation: https://github.com/danro/jquery-easing/blob/master/jquery.easing.js
// A few equations, very simplified: https://gist.github.com/gre/1650294
// Easings.net equations, simplified: https://github.com/ai/easings.net/blob/master/src/easings/easingsFunctions.ts
@ozdemirburak
ozdemirburak / countries_in_turkish.json
Last active October 7, 2023 21:49
Ülkelerin İngilizce ve Türkçe yazılışı - Country names in Turkish.
{
"AD": {
"name": "Andorra",
"name_tr": "Andorra",
"continent": {
"code": "EU",
"name": "Europe",
"name_tr": "Avrupa"
}
},
@halillusion
halillusion / ulkeler-countries.php
Last active August 6, 2023 11:58
Türkçe Ülke Kod Listesi (Array)
<?php
// Türkçe Ülke AD ve Kodları (Array) @halillusion
$countries = array(
'TR' => 'Türkiye',
'VI' => 'ABD Virgin Adaları',
'AF' => 'Afganistan',
'AX' => 'Aland Adaları',
'DE' => 'Almanya',
@cjddmut
cjddmut / EasingFunctions.cs
Last active May 5, 2024 09:12
Easing Functions for Unity3D
/*
* Created by C.J. Kimberlin
*
* The MIT License (MIT)
*
* Copyright (c) 2019
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights