mirror of
https://github.com/Ed94/LangStudies.git
synced 2024-11-10 04:14:53 -08:00
BAPFS Lecture 15
This commit is contained in:
parent
8117abedc9
commit
37e4b8874e
@ -5,6 +5,13 @@ if not ERRORLEVEL 0 (
|
|||||||
exit
|
exit
|
||||||
)
|
)
|
||||||
|
|
||||||
|
where python >nul 2>nul
|
||||||
|
if not ERRORLEVEL 0 (
|
||||||
|
echo Need python not found... Remove this error message if you have it.
|
||||||
|
pause
|
||||||
|
exit
|
||||||
|
)
|
||||||
|
|
||||||
where scons >nul 2>nul
|
where scons >nul 2>nul
|
||||||
if not ERRORLEVEL 0 (
|
if not ERRORLEVEL 0 (
|
||||||
python pip install scons
|
python pip install scons
|
||||||
|
19
Builds/Tests/13.MemberExpressions.uf
Normal file
19
Builds/Tests/13.MemberExpressions.uf
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
Symbol.Member;
|
||||||
|
|
||||||
|
Symbol.Member = 1;
|
||||||
|
|
||||||
|
Symbol.Member[0] = 1;
|
||||||
|
|
||||||
|
Symbol.Member.AnotherMember["Something"];
|
||||||
|
|
||||||
|
let str = "Hello World!";
|
||||||
|
let index = 0;
|
||||||
|
|
||||||
|
while (index < str.Length)
|
||||||
|
{
|
||||||
|
str[index];
|
||||||
|
|
||||||
|
// console.log(index, str[index]);
|
||||||
|
|
||||||
|
index += 1;
|
||||||
|
}
|
1187
Editor/Lectures/Lecture.15.gd
Normal file
1187
Editor/Lectures/Lecture.15.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]
|
[autoload]
|
||||||
|
|
||||||
GScene="*res://Lectures/Lecture.tscn"
|
GScene="*res://Lectures/Lecture.tscn"
|
||||||
GScript="*res://Lectures/Lecture.14.gd"
|
GScript="*res://Lectures/Lecture.15.gd"
|
||||||
|
|
||||||
[gui]
|
[gui]
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user