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
| @tool | |
| extends Node3D | |
| @export_dir var dir : | |
| set(value): | |
| perform_import(value) | |
| @export var bone_map : BoneMap | |
| @export var create_Animation_tree : bool = false | |
| @export var hip : String = "Hips" | |
| @export var loops = [ |
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
| IAMUSERID %{NUMBER:iam_user_id} | |
| IAMUSERNAME [a-zA-Z0-9._-]+ | |
| IAMUSER arn:aws:iam::%{IAMUSERID}:user/%{IAMUSERNAME:iam_user_name} | |
| S3TYPE (?:OBJECT) | |
| S3OP [a-zA-z]+ | |
| S3SOAPOPERATION (?:SOAP\.%{S3OP}) | |
| S3RESTOPERATION (?:REST\.%{S3OP}\.%{S3TYPE}) | |
| S3WEBSITEOPERATION (?:WEBSITE\.%{S3OP}\.%{S3TYPE}) | |
| S3OPERATION (?:%{S3SOAPOPERATION}|%{S3RESTOPERATION}|%{S3WEBSITEOPERATION}) |
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
| hideAddressBar = -> | |
| inScroll = false | |
| fun = -> | |
| return true if inScroll | |
| inScroll = true | |
| de = document.documentElement | |
| h = window.outerHeight/window.devicePixelRatio | |
| if de.scrollHeight < h | |
| de.style.height = h + 'px' | |
| window.scrollTo 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
| module Base105 | |
| EncChars = (' '..'~').to_a.flatten | |
| DecChars = begin | |
| dec = [] | |
| EncChars.each_with_index{ |c, i| dec[c.ord] = i } | |
| dec | |
| end | |
| def self.encode(i) | |
| result = '' |