Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
mastrio committed Nov 22, 2021
0 parents commit 8c084ce
Show file tree
Hide file tree
Showing 25 changed files with 11,063 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Auto detect text files and perform LF normalization
* text=auto
3 changes: 3 additions & 0 deletions .import/icon.png-487276ed1e3a0c39cad0279d744ee560.md5
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
source_md5="5b5764b3efcacac96e56c0cfa509425b"
dest_md5="86b2403bc12d1aa703da9eb2fd31b69b"

Binary file not shown.
3 changes: 3 additions & 0 deletions .import/kirbo.obj-d13c6944bf78ac11622ecb4f9dab5c62.md5
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
source_md5="7f37109d0a79724eac2018ddb625aeae"
dest_md5="4ea9ee03715b749481781a6df8a412e7"

Binary file not shown.
3 changes: 3 additions & 0 deletions .import/loading.png-10b6cb5dd686e9bfba85d6e0eaa9ca8e.md5
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
source_md5="3977b1fa46c0532e959b782215e10a61"
dest_md5="51321f68a635fe26c5397be9242289bf"

Binary file not shown.
Binary file added Export/Super Kirbo Simulator 64.exe
Binary file not shown.
Binary file added Export/Super Kirbo Simulator 64.pck
Binary file not shown.
Binary file added Export/Super Kirbo Simulator 64.zip
Binary file not shown.
5 changes: 5 additions & 0 deletions Kirbo/Kirbo.gd
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
extends Spatial

func _ready():
yield(get_tree().create_timer(12), "timeout")
queue_free()
27 changes: 27 additions & 0 deletions Kirbo/Kirbo.tscn
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
[gd_scene load_steps=5 format=2]

[ext_resource path="res://Kirbo/kirbo.obj" type="ArrayMesh" id=1]
[ext_resource path="res://Kirbo/Kirbo.gd" type="Script" id=2]

[sub_resource type="PhysicsMaterial" id=2]
bounce = 0.3

[sub_resource type="SphereShape" id=1]

[node name="Kirbo" type="Spatial"]
script = ExtResource( 2 )

[node name="RigidBody" type="RigidBody" parent="."]
physics_material_override = SubResource( 2 )

[node name="CollisionShape" type="CollisionShape" parent="RigidBody"]
shape = SubResource( 1 )

[node name="Model" type="MeshInstance" parent="RigidBody"]
mesh = ExtResource( 1 )
material/0 = null
material/1 = null
material/2 = null
material/3 = null
material/4 = null
material/5 = null
32 changes: 32 additions & 0 deletions Kirbo/kirbo.mtl
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Blender MTL File: 'None'
# Material Count: 3

newmtl Body
Ns 225.000000
Ka 1.000000 1.000000 1.000000
Kd 0.800000 0.179435 0.541804
Ks 0.500000 0.500000 0.500000
Ke 0.000000 0.000000 0.000000
Ni 1.450000
d 1.000000
illum 2

newmtl Face
Ns 225.000000
Ka 1.000000 1.000000 1.000000
Kd 0.000000 0.000000 0.000000
Ks 0.500000 0.500000 0.500000
Ke 0.000000 0.000000 0.000000
Ni 1.450000
d 1.000000
illum 2

newmtl Legssssssssssssss
Ns 225.000000
Ka 1.000000 1.000000 1.000000
Kd 0.800000 0.054567 0.029978
Ks 0.500000 0.500000 0.500000
Ke 0.000000 0.000000 0.000000
Ni 1.450000
d 1.000000
illum 2
Loading

0 comments on commit 8c084ce

Please sign in to comment.