Skip to content

Commit 1d6e705

Browse files
authored
Add files via upload
1 parent f469698 commit 1d6e705

File tree

7 files changed

+227
-0
lines changed

7 files changed

+227
-0
lines changed

default_env.tres

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[gd_resource type="Environment" load_steps=2 format=2]
2+
3+
[sub_resource type="ProceduralSky" id=1]
4+
5+
[resource]
6+
background_mode = 2
7+
background_sky = SubResource( 1 )

export_presets.cfg

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
[preset.0]
2+
3+
name="Linux/X11"
4+
platform="Linux/X11"
5+
runnable=true
6+
custom_features=""
7+
export_filter="all_resources"
8+
include_filter=""
9+
exclude_filter=""
10+
export_path="build/.brainpower.x86_64"
11+
script_export_mode=1
12+
script_encryption_key=""
13+
14+
[preset.0.options]
15+
16+
custom_template/debug=""
17+
custom_template/release=""
18+
binary_format/64_bits=true
19+
binary_format/embed_pck=true
20+
texture_format/bptc=false
21+
texture_format/s3tc=true
22+
texture_format/etc=false
23+
texture_format/etc2=false
24+
texture_format/no_bptc_fallbacks=true
25+
26+
[preset.1]
27+
28+
name="Windows Desktop"
29+
platform="Windows Desktop"
30+
runnable=true
31+
custom_features=""
32+
export_filter="all_resources"
33+
include_filter=""
34+
exclude_filter=""
35+
export_path="build/brainpower.exe"
36+
script_export_mode=1
37+
script_encryption_key=""
38+
39+
[preset.1.options]
40+
41+
custom_template/debug=""
42+
custom_template/release=""
43+
binary_format/64_bits=true
44+
binary_format/embed_pck=true
45+
texture_format/bptc=false
46+
texture_format/s3tc=true
47+
texture_format/etc=false
48+
texture_format/etc2=false
49+
texture_format/no_bptc_fallbacks=true
50+
codesign/enable=false
51+
codesign/identity=""
52+
codesign/password=""
53+
codesign/timestamp=true
54+
codesign/timestamp_server_url=""
55+
codesign/digest_algorithm=1
56+
codesign/description=""
57+
codesign/custom_options=PoolStringArray( )
58+
application/icon=""
59+
application/file_version=""
60+
application/product_version=""
61+
application/company_name=""
62+
application/product_name=""
63+
application/file_description=""
64+
application/copyright=""
65+
application/trademarks=""

icon.png

849 KB
Loading

icon.png.import

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
[remap]
2+
3+
importer="texture"
4+
type="StreamTexture"
5+
path="res://.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex"
6+
metadata={
7+
"vram_texture": false
8+
}
9+
10+
[deps]
11+
12+
source_file="res://icon.png"
13+
dest_files=[ "res://.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex" ]
14+
15+
[params]
16+
17+
compress/mode=0
18+
compress/lossy_quality=0.7
19+
compress/hdr_mode=0
20+
compress/bptc_ldr=0
21+
compress/normal_map=0
22+
flags/repeat=0
23+
flags/filter=true
24+
flags/mipmaps=false
25+
flags/anisotropic=false
26+
flags/srgb=2
27+
process/fix_alpha_border=true
28+
process/premult_alpha=false
29+
process/HDR_as_SRGB=false
30+
process/invert_color=false
31+
stream=false
32+
size_limit=0
33+
detect_3d=true
34+
svg/scale=1.0

main.gd

Lines changed: 79 additions & 0 deletions
Large diffs are not rendered by default.

main.tscn

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
[gd_scene load_steps=3 format=2]
2+
3+
[ext_resource path="res://assets/brainpower.webm" type="VideoStream" id=1]
4+
[ext_resource path="res://main.gd" type="Script" id=2]
5+
6+
[node name="Node" type="Node"]
7+
script = ExtResource( 2 )
8+
9+
[node name="VideoPlayer" type="VideoPlayer" parent="."]
10+
anchor_right = 1.0
11+
anchor_bottom = 1.0
12+
stream = ExtResource( 1 )
13+
volume_db = -80.0
14+
autoplay = true
15+
__meta__ = {
16+
"_edit_use_anchors_": false
17+
}

project.godot

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
; Engine configuration file.
2+
; It's best edited using the editor UI and not directly,
3+
; since the parameters that go here are not all obvious.
4+
;
5+
; Format:
6+
; [section] ; section goes between []
7+
; param=value ; assign values to parameters
8+
9+
config_version=4
10+
11+
[application]
12+
13+
config/name="Brain Power"
14+
run/main_scene="res://main.tscn"
15+
boot_splash/fullsize=false
16+
boot_splash/use_filter=false
17+
config/icon="res://icon.png"
18+
19+
[physics]
20+
21+
common/enable_pause_aware_picking=true
22+
23+
[rendering]
24+
25+
environment/default_environment="res://default_env.tres"

0 commit comments

Comments
 (0)