- Alcest
- Circadian Eyes
- Explosions in the Sky
- Eluvium
- Tides from Nebula
- Break my fucking sky
- Her name is Calla
- Nyctalgia
- God is an Astronaut
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using UnityEngine; | |
| namespace Camera | |
| { | |
| public class OrbitCameraController : MonoBehaviour | |
| { | |
| private const float MIN_DISTANCE = 0.5f; | |
| private const float MAX_DISTANCE = 50f; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import bpy | |
| import os | |
| from time import time | |
| from bpy.props import BoolProperty, IntProperty, PointerProperty | |
| bl_info = { | |
| "name": "Image Auto Reload", | |
| "description": "", | |
| "author": "alexandru.pana@manabreakstudios.com", | |
| "version": (0, 0, 1), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| float FParticleRibbonEmitterInstance::Spawn(float DeltaTime) | |
| { | |
| bool bProcessSpawnRate = Spawn_Source(DeltaTime); | |
| if (bProcessSpawnRate == false) | |
| { | |
| return SpawnFraction; | |
| } | |
| UParticleLODLevel* LODLevel = SpriteTemplate->LODLevels[0]; | |
| check(LODLevel); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| WPM = 200; m = Array.from(document.getElementsByTagName("p")).reduce((acc, t) => acc + t.innerHTML, "").split(" ").length / WPM; h = Math.floor(m / 60); m = Math.floor(m % 60); msg = h > 0 ? h+"h "+m+"m" : m+"m";alert("Estimated read time: " + msg) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const std = @import("std"); | |
| // const input = @embedFile("18.test.input"); | |
| const Operator = enum { | |
| l_paren, | |
| r_paren, | |
| add, | |
| sub, | |
| mul, |
OlderNewer