Skip to content

Commit 8d053eb

Browse files
committed
Initial upload
1 parent bc68a98 commit 8d053eb

File tree

129 files changed

+3529
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

129 files changed

+3529
-0
lines changed

src/Jumpy.csproj

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup>
4+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6+
<ProjectGuid>{618EE5C1-9786-43FE-B201-4DB3C7C8D59A}</ProjectGuid>
7+
<OutputType>Library</OutputType>
8+
<OutputPath>.mono\temp\bin\$(Configuration)</OutputPath>
9+
<RootNamespace>Jumpy</RootNamespace>
10+
<AssemblyName>Jumpy</AssemblyName>
11+
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
12+
<BaseIntermediateOutputPath>.mono\temp\obj</BaseIntermediateOutputPath>
13+
<IntermediateOutputPath>$(BaseIntermediateOutputPath)\$(Configuration)</IntermediateOutputPath>
14+
</PropertyGroup>
15+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
16+
<DebugSymbols>true</DebugSymbols>
17+
<DebugType>portable</DebugType>
18+
<Optimize>false</Optimize>
19+
<DefineConstants>DEBUG;</DefineConstants>
20+
<ErrorReport>prompt</ErrorReport>
21+
<WarningLevel>4</WarningLevel>
22+
<ConsolePause>false</ConsolePause>
23+
</PropertyGroup>
24+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
25+
<DebugType>portable</DebugType>
26+
<Optimize>true</Optimize>
27+
<ErrorReport>prompt</ErrorReport>
28+
<WarningLevel>4</WarningLevel>
29+
<ConsolePause>false</ConsolePause>
30+
</PropertyGroup>
31+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Tools|AnyCPU' ">
32+
<DebugSymbols>true</DebugSymbols>
33+
<DebugType>portable</DebugType>
34+
<Optimize>false</Optimize>
35+
<DefineConstants>DEBUG;TOOLS;</DefineConstants>
36+
<ErrorReport>prompt</ErrorReport>
37+
<WarningLevel>4</WarningLevel>
38+
<ConsolePause>false</ConsolePause>
39+
</PropertyGroup>
40+
<ItemGroup>
41+
<Reference Include="GodotSharp">
42+
<HintPath>$(ProjectDir)\.mono\assemblies\GodotSharp.dll</HintPath>
43+
<Private>False</Private>
44+
</Reference>
45+
<Reference Include="GodotSharpEditor" Condition=" '$(Configuration)' == 'Tools' ">
46+
<HintPath>$(ProjectDir)\.mono\assemblies\GodotSharpEditor.dll</HintPath>
47+
<Private>False</Private>
48+
</Reference>
49+
<Reference Include="System" />
50+
</ItemGroup>
51+
<ItemGroup>
52+
<Compile Include="Properties\AssemblyInfo.cs" />
53+
<Compile Include="scripts\BounceAnimPlayer.cs" />
54+
<Compile Include="scripts\GameScene.cs" />
55+
<Compile Include="scripts\ParallaxBG.cs" />
56+
<Compile Include="scripts\Platform.cs" />
57+
<Compile Include="scripts\PlatformFactory.cs" />
58+
<Compile Include="scripts\Player.cs" />
59+
<Compile Include="scripts\ScoreLabel.cs" />
60+
</ItemGroup>
61+
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
62+
</Project>

src/Jumpy.sln

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
Microsoft Visual Studio Solution File, Format Version 12.00
2+
# Visual Studio 2012
3+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Jumpy", "Jumpy.csproj", "{618EE5C1-9786-43FE-B201-4DB3C7C8D59A}"
4+
EndProject
5+
Global
6+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
7+
Debug|Any CPU = Debug|Any CPU
8+
Release|Any CPU = Release|Any CPU
9+
Tools|Any CPU = Tools|Any CPU
10+
EndGlobalSection
11+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
12+
{618EE5C1-9786-43FE-B201-4DB3C7C8D59A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
13+
{618EE5C1-9786-43FE-B201-4DB3C7C8D59A}.Debug|Any CPU.Build.0 = Debug|Any CPU
14+
{618EE5C1-9786-43FE-B201-4DB3C7C8D59A}.Release|Any CPU.ActiveCfg = Release|Any CPU
15+
{618EE5C1-9786-43FE-B201-4DB3C7C8D59A}.Release|Any CPU.Build.0 = Release|Any CPU
16+
{618EE5C1-9786-43FE-B201-4DB3C7C8D59A}.Tools|Any CPU.ActiveCfg = Tools|Any CPU
17+
{618EE5C1-9786-43FE-B201-4DB3C7C8D59A}.Tools|Any CPU.Build.0 = Tools|Any CPU
18+
EndGlobalSection
19+
EndGlobal

src/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 )

src/fonts/Grandstander-clean.otf

94.3 KB
Binary file not shown.

src/images/application/icon.ico

113 KB
Binary file not shown.

src/images/application/icon.png

17.1 KB
Loading
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-a3180e478216ce79ec0ce6e851fb43af.stex"
6+
metadata={
7+
"vram_texture": false
8+
}
9+
10+
[deps]
11+
12+
source_file="res://images/application/icon.png"
13+
dest_files=[ "res://.import/icon.png-a3180e478216ce79ec0ce6e851fb43af.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

src/images/application/splash.png

97.6 KB
Loading
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/splash.png-0785c8ca583cb26a044439cdc4b4a547.stex"
6+
metadata={
7+
"vram_texture": false
8+
}
9+
10+
[deps]
11+
12+
source_file="res://images/application/splash.png"
13+
dest_files=[ "res://.import/splash.png-0785c8ca583cb26a044439cdc4b4a547.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

src/images/background/sky.png

2.45 MB
Loading

0 commit comments

Comments
 (0)