Please use Tree to get an idea of the required tree structure. Every node in Tree can be found as an image.
In addition, custom components(scripts) are also included.
# Inspired by Gonkee's [_Godot 3: How to make a Joystick_](https://www.youtube.com/watch?v=uGyEP2LUFPg) | |
# Version V0.1.1 | |
# Assumptions | |
# Joystick : Node2D -> Joystick.gd | |
# |- Boundary : Sprite | |
# |- Handle : TouchScreenButton | |
# Motivation |
# under CC0 License | |
# zips the lines of two files | |
# don't know how to extend ruby | |
# instead made a function | |
# this works cuz `File.open(file, "r").each` return an Enumerable of lines | |
$i = { a: "#{__dir__}/a.txt", b: "#{__dir__}/b.txt" } | |
$o = "#{__dir__}/o.txt" |
using System; | |
using System.Linq; | |
using System.Text.Json; | |
using System.Text.RegularExpressions; | |
using System.Collections.Generic; | |
namespace FunctionalProgrammingForCSharp { | |
class Program { | |
static void title(string title_name, string separator = "\n----\n") { | |
Console.Write(separator + $" {title_name}" + separator); |
# could be shorter or better implemented, but this'll do for now :) | |
class String | |
def is_numeric? | |
Rational(self) != nil rescue false | |
end | |
end | |
def parse(input) | |
if input.kind_of? String |
// deno run --allow-net --allow-read main.ts | |
// deno std is not totally stable, look at source to get an idea of how it does it | |
import { ensureFile } from "https://deno.land/[email protected]/fs/ensure_file.ts"; | |
import { Application, Context, Router, send } from "https://deno.land/x/oak/mod.ts"; | |
// quality of life variables | |
const cwd = Deno.cwd().replaceAll("\\", "/"); | |
const public_folder = `${cwd}/public`; |
var muted = false | |
func toggle_mute_all(): | |
self.muted = !self.muted | |
AudioServer.set_bus_mute(AudioServer.get_bus_index("Master"), self.muted) |
# will print all the font families that can be used | |
# currently using it for XeLaTeX | |
## \usepackage{fontspec} | |
## \setmainfont{<name of font>} | |
fc-list : outline -format "%{family}\n" | sort | uniq |
<h2>Members</h2> | |
<p> | |
<strong>Programming ∷ </strong> | |
Abdullah Salem <a href="https://fenguinn.itch.io/">Itch</a> • | |
Lilou <a href="https://liloupalomino.itch.io/">Itch</a> • | |
Julian <a href="https://jaacko-torus.itch.io">Itch</a> • | |
Justin <a href="https://seijin2008.itch.io/">Itch</a> • | |
Sean Ayers | |
</p> | |
<p> |
// godot shader | |
shader_type canvas_item; | |
uniform float bell_width = 4.0; | |
float bell(float x) { | |
return exp(-pow(bell_width * (x - 0.5), 2)); | |
} | |
// usage |