Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
PulsGameJam2025
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Fabian Keßler
PulsGameJam2025
Compare revisions
5049088b14611830940657a727f987bd5677c732 to e7c45f2eb94e34387bac3bb31b0c9f9948487169
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
s476696/pulsgamejam2025
Select target project
No results found
e7c45f2eb94e34387bac3bb31b0c9f9948487169
Select Git revision
Branches
main
Swap
Target
s476696/pulsgamejam2025
Select target project
s476696/pulsgamejam2025
1 result
5049088b14611830940657a727f987bd5677c732
Select Git revision
Branches
main
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
Orca changes
· 3a4fb71a
Pablau
authored
3 weeks ago
3a4fb71a
Merge branch 'main' of
https://gitlab2.informatik.uni-wuerzburg.de/s476696/pulsgamejam2025
· e7c45f2e
Pablau
authored
3 weeks ago
e7c45f2e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
pulsjam2025/NPC/orca/orca.gd
+7
-2
7 additions, 2 deletions
pulsjam2025/NPC/orca/orca.gd
pulsjam2025/Player/TestScene.tscn
+5
-1
5 additions, 1 deletion
pulsjam2025/Player/TestScene.tscn
pulsjam2025/project.godot
+4
-1
4 additions, 1 deletion
pulsjam2025/project.godot
with
16 additions
and
4 deletions
pulsjam2025/NPC/orca/orca.gd
View file @
e7c45f2e
...
...
@@ -55,10 +55,15 @@ func find_closest_point_on_radius() -> Vector2:
return
center
+
Vector2
(
cos
(
angle
),
sin
(
angle
))
*
radius
func
_on_orca_timer_timeout
()
->
void
:
dash
(
center
)
var
Scholle
:
Node2D
=
$
SchollenSpektakel
var
Pengu
:
Node2D
=
Scholle
.
get_node
(
"PenguGroup"
)
var
PenguLength
=
Pengu
.
penguins
.
size
var
randomPengu
:
Node2D
=
Pengu
.
penguins
[
randi_range
(
0
,
PenguLength
)]
dash
(
to_global
(
randomPengu
.
position
))
func
slice_floes
(
splice_start
:
Vector2
,
splice_end
:
Vector2
)
->
void
:
for
child
in
get_children
():
var
Scholle
:
Node2D
=
$
SchollenSpektakel
for
child
in
Scholle
.
get_children
():
if
child
is
IceFloe
:
if
child
.
will_line_cut_polygon
(
splice_start
,
splice_end
):
var
poly_node
:
Polygon2D
=
child
.
get_node
(
"Polygon2D"
)
...
...
This diff is collapsed.
Click to expand it.
pulsjam2025/Player/TestScene.tscn
View file @
e7c45f2e
[gd_scene load_steps=
3
format=3 uid="uid://byb21wlyercnu"]
[gd_scene load_steps=
4
format=3 uid="uid://byb21wlyercnu"]
[ext_resource type="PackedScene" uid="uid://cwmunv68b7txk" path="res://Player/PlayerScene.tscn" id="1_kjoa5"]
[ext_resource type="PackedScene" uid="uid://ch1i0q8d6r4f0" path="res://schollen_spektakel.tscn" id="2_oh42m"]
[ext_resource type="PackedScene" uid="uid://k0xsan4kntww" path="res://NPC/orca/orca.tscn" id="3_ixcwh"]
[node name="TestScene" type="Node2D"]
...
...
@@ -13,3 +14,6 @@ position = Vector2(-17, 66)
[node name="PlayerScene" parent="." instance=ExtResource("1_kjoa5")]
position = Vector2(502, 306)
[node name="Orca" parent="." instance=ExtResource("3_ixcwh")]
position = Vector2(-17, 66)
This diff is collapsed.
Click to expand it.
pulsjam2025/project.godot
View file @
e7c45f2e
...
...
@@ -11,7 +11,7 @@ config_version=5
[application]
config/name="PulsJam2025"
run/main_scene="uid://
dk2io7q7xpl0i
"
run/main_scene="uid://
byb21wlyercnu
"
config/features=PackedStringArray("4.4")
[autoload]
...
...
@@ -71,6 +71,9 @@ DebugGrapple={
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":70,"key_label":0,"unicode":102,"location":0,"echo":false,"script":null)
]
}
run/main_scene="uid://ch1i0q8d6r4f0"
config/features=PackedStringArray("4.4", "GL Compatibility")
config/icon="res://icon.svg"
continue_stage={
"deadzone": 0.2,
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":32,"key_label":0,"unicode":32,"location":0,"echo":false,"script":null)
...
...
This diff is collapsed.
Click to expand it.