mirror of
https://github.com/Ed94/LangStudies.git
synced 2025-01-22 04:23:45 -08:00
BAPFS Lecture 14
This commit is contained in:
parent
6832deb5ad
commit
5e3fd7a13c
15
Builds/Tests/12.Functions.uf
Normal file
15
Builds/Tests/12.Functions.uf
Normal file
@ -0,0 +1,15 @@
|
||||
def square(value)
|
||||
{
|
||||
return value * value;
|
||||
}
|
||||
|
||||
def empty() { return; }
|
||||
def empty_2() { }
|
||||
|
||||
def multi_variable(a, b)
|
||||
{
|
||||
return a * b;
|
||||
}
|
||||
|
||||
// square(2);
|
||||
|
1144
Editor/Lectures/Lecture.14.gd
Normal file
1144
Editor/Lectures/Lecture.14.gd
Normal file
File diff suppressed because it is too large
Load Diff
@ -18,7 +18,7 @@ config/icon="res://Assets/Branding/RDP_Class_cover_small.png"
|
||||
[autoload]
|
||||
|
||||
GScene="*res://Lectures/Lecture.tscn"
|
||||
GScript="*res://Lectures/Lecture.13.gd"
|
||||
GScript="*res://Lectures/Lecture.14.gd"
|
||||
|
||||
[gui]
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user