I hereby claim:
- I am deledrius on github.
- I am deledrius (https://keybase.io/deledrius) on keybase.
- I have a public key whose fingerprint is C9E4 84C0 DB64 F0FF E291 C9CE E881 F446 892A 516D
To claim this, I am signing this object:
extends CharacterBody2D | |
@export var move_speed = 200.0 | |
@export var jump_height : float | |
@export var jump_time_to_peak : float | |
@export var jump_time_to_descent : float | |
@onready var jump_velocity : float = ((2.0 * jump_height) / jump_time_to_peak) * -1.0 | |
@onready var jump_gravity : float = ((-2.0 * jump_height) / (jump_time_to_peak * jump_time_to_peak)) * -1.0 | |
@onready var fall_gravity : float = ((-2.0 * jump_height) / (jump_time_to_descent * jump_time_to_descent)) * -1.0 |
#! /bin/bash | |
set -e | |
trap 'previous_command=$this_command; this_command=$BASH_COMMAND' DEBUG | |
trap 'echo FAILED COMMAND: $previous_command' EXIT | |
#------------------------------------------------------------------------------------------- | |
# This script will download packages for, configure, build and install a GCC cross-compiler. | |
# Customize the variables (INSTALL_PATH, TARGET, etc.) to your liking before running. | |
# If you get an error and need to resume the script from some point in the middle, | |
# just delete/comment the preceding lines before running it again. |
import bpy | |
import addon_utils | |
from PyHSPlasma import * | |
import korman.properties.modifiers.region as kor_region | |
# For reading all that alcscripty info | |
from ruamel.yaml import YAML | |
collision_bounds_translations = { |
#!/usr/bin/env python | |
# PRP_as_Text is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or | |
# (at your option) any later version. | |
# | |
# PRP_as_Text is distributed in the hope that it will be useful, | |
# but WITHOUT ANY WARRANTY; without even the implied warranty of | |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
[sdl] | |
fullscreen=true | |
fulldouble=true | |
fullresolution=0x0 | |
windowresolution=0x0 | |
output=openglnb | |
autolock=true | |
sensitivity=500 | |
waitonerror=true | |
priority=higher,normal |
#!/usr/bin/env python | |
# CreateClothingPRP is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or | |
# (at your option) any later version. | |
# | |
# CreateClothingPRP is distributed in the hope that it will be useful, | |
# but WITHOUT ANY WARRANTY; without even the implied warranty of | |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
/* ==UserStyle== | |
@name Github Enhancements | |
@namespace com.zero-factorial.userstyles | |
@homepageURL https://gist.github.com/Deledrius/0ec75b8081e0a9229fcf70ad4a0acbb1 | |
@updateURL https://gist.github.com/Deledrius/0ec75b8081e0a9229fcf70ad4a0acbb1/raw/Github.user.css | |
@version 1.0.2 | |
@license MIT | |
@description Fixes design mistakes on Github. | |
@author Joseph Davies | |
==/UserStyle== */ |
I hereby claim:
To claim this, I am signing this object:
--------------------------- | |
Sublime Text 2 | |
--------------------------- | |
A plugin (set_unsaved_view_name) may be making Sublime Text unresponsive by taking too long (0.059000s) in its on_modified callback. | |
This message can be disabled via the detect_slow_plugins setting | |
#!/usr/bin/env python | |
# This file is part of PlasmaTransfusion. | |
# | |
# PlasmaTransfusion is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or | |
# (at your option) any later version. | |
# | |
# PlasmaTransfusion is distributed in the hope that it will be useful, |