This file contains 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
{ | |
"name": "stip", | |
"changelog": [ | |
"23/03/2016 - 11:55:51" | |
], | |
"nodes": [ | |
{ | |
"name": "Root", | |
"type": "BONE", | |
"node_path": "Root", |
This file contains 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
extends Node2D | |
var arguments = [] | |
var output = [] | |
#This script should open your file manager in disk C: on start | |
#Its the equivalent of doing 'start C:\' in the CMD | |
# The start command (when working) can be used to open any file type with the default software that | |
#is assigned to it. In this case it opens a directory (default - file explorer) for sake of example. | |
func _ready(): |
This file contains 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
func _on_H_text_changed(): | |
hInput.set_text(returnNumbersOnly(hInput.get_text())) | |
hInput.cursor_set_column(hInput.get_text().length(),true) | |
## This function restricts the input to be only numeric### | |
func returnNumbersOnly(enteredText): | |
var word = '' | |
for letter in enteredText: | |
var resultingText = RegEx.new() |
This file contains 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
extends LineEdit | |
var updating = false | |
const allowed = ["0","1","2","3","4","5","6","7","8","9"] | |
func _ready(): | |
connect("text_changed",self,"otc") |
This file contains 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
extends Camera2D | |
var dragging = false | |
func _ready(): | |
set_process_input(true) | |
func _input(event): | |
if event.type == InputEvent.MOUSE_BUTTON and event.button_index == BUTTON_MIDDLE: | |
dragging = event.is_pressed() |
This file contains 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
var curSelectedItem = 0 | |
func _on_ItemList_item_selected( index ): | |
if curSelectedItem == index: print('Double Clicked!') | |
curSelectedItem = index |
This file contains 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
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
;;; ;;; | |
;;; Sun Lotion - Data Entry Application ;;; | |
;;; Created by Todor Imreorov -- blurymind@gmail.com ;;; | |
;;; For Use with SolarVista ;;; | |
;;; ;;; | |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
Gui, Add, Text, Section x50,Created by Todor Imreorov |
This file contains 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
[('python36.dll', | |
'D:\\WORK\\PYTHON\\WinPython-64bit-3.6.3.0-CLEAN\\python-3.6.3.amd64\\python36.dll', | |
'BINARY'), | |
('VCRUNTIME140.dll', | |
'D:\\WORK\\PYTHON\\WinPython-64bit-3.6.3.0-CLEAN\\python-3.6.3.amd64\\VCRUNTIME140.dll', | |
'BINARY'), | |
('_ssl', | |
'D:\\WORK\\PYTHON\\WinPython-64bit-3.6.3.0-CLEAN\\python-3.6.3.amd64\\DLLs\\_ssl.pyd', | |
'EXTENSION'), | |
('unicodedata', |
This file contains 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
//Set up scene, camera, and renderer | |
var scene = new THREE.Scene; | |
var camera = new THREE.PerspectiveCamera( 45, window.innerWidth / window.innerHeight, 1, 10000 ); | |
var renderer = new THREE.CanvasRenderer(); | |
renderer.setClearColor( 0xf0f0f0 ); | |
renderer.setSize( window.innerWidth, window.innerHeight ); | |
document.body.appendChild( renderer.domElement ); | |
var video = document.createElement('video'); |
This file contains 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
@echo off | |
echo This requires you to install ffmpeg | |
REM ffmpeg -i file.mov -r 24/1 output%03d.png | |
REM nxF is for file with ext | |
for %%F in ("%~1") do SET fileNameExt=%%~nxF | |
for %%F in ("%~1") do SET fileName=%%~nF | |
echo file name is: %fileName% | |
SET ffmpegPath=C:\ffmpeg\bin\ffmpeg.exe |
OlderNewer