Added git plugin to Godot
This commit is contained in:
parent
d2ff6f8d25
commit
5e03c4549b
18 changed files with 1141 additions and 0 deletions
1
.import/.gdignore
Normal file
1
.import/.gdignore
Normal file
|
@ -0,0 +1 @@
|
|||
|
|
@ -0,0 +1,3 @@
|
|||
source_md5="b4f44aa3e86cbf1b741acb490bcb425e"
|
||||
dest_md5="c494dc2b09975354a74803b9a2558ac3"
|
||||
|
Binary file not shown.
|
@ -0,0 +1,3 @@
|
|||
source_md5="b4f44aa3e86cbf1b741acb490bcb425e"
|
||||
dest_md5="c494dc2b09975354a74803b9a2558ac3"
|
||||
|
Binary file not shown.
3
.import/icon.png-487276ed1e3a0c39cad0279d744ee560.md5
Normal file
3
.import/icon.png-487276ed1e3a0c39cad0279d744ee560.md5
Normal file
|
@ -0,0 +1,3 @@
|
|||
source_md5="47313fa4c47a9963fddd764e1ec6e4a8"
|
||||
dest_md5="26ea799ea0a3da9e753b3ebe822e0570"
|
||||
|
BIN
.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex
Normal file
BIN
.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex
Normal file
Binary file not shown.
21
addons/godot-git-plugin/LICENSE
Normal file
21
addons/godot-git-plugin/LICENSE
Normal file
|
@ -0,0 +1,21 @@
|
|||
MIT License
|
||||
|
||||
Copyright (c) 2016-2022 The Godot Engine community
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
1062
addons/godot-git-plugin/THIRDPARTY.md
Normal file
1062
addons/godot-git-plugin/THIRDPARTY.md
Normal file
File diff suppressed because it is too large
Load diff
18
addons/godot-git-plugin/git_api.gdnlib
Normal file
18
addons/godot-git-plugin/git_api.gdnlib
Normal file
|
@ -0,0 +1,18 @@
|
|||
[general]
|
||||
|
||||
singleton=true
|
||||
load_once=true
|
||||
symbol_prefix="godot_"
|
||||
reloadable=false
|
||||
|
||||
[entry]
|
||||
|
||||
OSX.64="res://addons/godot-git-plugin/osx/release/libgitapi.dylib"
|
||||
Windows.64="res://addons/godot-git-plugin/win64/release/libgitapi.dll"
|
||||
X11.64="res://addons/godot-git-plugin/x11/release/libgitapi.so"
|
||||
|
||||
[dependencies]
|
||||
|
||||
OSX.64=[ ]
|
||||
Windows.64=[ ]
|
||||
X11.64=[ ]
|
9
addons/godot-git-plugin/git_api.gdns
Normal file
9
addons/godot-git-plugin/git_api.gdns
Normal file
|
@ -0,0 +1,9 @@
|
|||
[gd_resource type="NativeScript" load_steps=2 format=2]
|
||||
|
||||
[ext_resource path="res://addons/godot-git-plugin/git_api.gdnlib" type="GDNativeLibrary" id=1]
|
||||
|
||||
[resource]
|
||||
resource_name = "GitAPI"
|
||||
class_name = "GitAPI"
|
||||
library = ExtResource( 1 )
|
||||
script_class_name = "GitAPI"
|
BIN
addons/godot-git-plugin/osx/release/libgitapi.dylib
Normal file
BIN
addons/godot-git-plugin/osx/release/libgitapi.dylib
Normal file
Binary file not shown.
7
addons/godot-git-plugin/plugin.cfg
Normal file
7
addons/godot-git-plugin/plugin.cfg
Normal file
|
@ -0,0 +1,7 @@
|
|||
[plugin]
|
||||
|
||||
name="Godot Git Plugin"
|
||||
description="This plugin lets you interact with Git without leaving the Godot editor. More information can be found at https://github.com/godotengine/godot-git-plugin/wiki"
|
||||
author="ChronicallySerious"
|
||||
version="v1.2.3"
|
||||
script="git_api.gdns"
|
BIN
addons/godot-git-plugin/win64/release/libgitapi.dll
Normal file
BIN
addons/godot-git-plugin/win64/release/libgitapi.dll
Normal file
Binary file not shown.
BIN
addons/godot-git-plugin/win64/release/libgitapi.exp
Normal file
BIN
addons/godot-git-plugin/win64/release/libgitapi.exp
Normal file
Binary file not shown.
BIN
addons/godot-git-plugin/win64/release/libgitapi.lib
Normal file
BIN
addons/godot-git-plugin/win64/release/libgitapi.lib
Normal file
Binary file not shown.
BIN
addons/godot-git-plugin/x11/release/libgitapi.so
Normal file
BIN
addons/godot-git-plugin/x11/release/libgitapi.so
Normal file
Binary file not shown.
|
@ -8,6 +8,16 @@
|
|||
|
||||
config_version=4
|
||||
|
||||
_global_script_classes=[ {
|
||||
"base": "",
|
||||
"class": "GitAPI",
|
||||
"language": "NativeScript",
|
||||
"path": "res://addons/godot-git-plugin/git_api.gdns"
|
||||
} ]
|
||||
_global_script_class_icons={
|
||||
"GitAPI": ""
|
||||
}
|
||||
|
||||
[application]
|
||||
|
||||
config/name="Tank Blaster"
|
||||
|
@ -21,6 +31,10 @@ window/size/width=1920
|
|||
window/size/height=1080
|
||||
window/size/fullscreen=true
|
||||
|
||||
[gdnative]
|
||||
|
||||
singletons=[ "res://addons/godot-git-plugin/git_api.gdnlib" ]
|
||||
|
||||
[input]
|
||||
|
||||
move_right={
|
||||
|
|
Loading…
Reference in a new issue