This commit is contained in:
watrabi
2025-09-18 17:55:52 -04:00
commit 977f1ff4b8
15030 changed files with 17324420 additions and 0 deletions
@@ -0,0 +1,29 @@
#!/bin/bash
echo "Running CoreScriptConverter"
cd "$1"
./CoreScriptConverter --rscloc "../rsc.config" --verbose
cd "$1/../../../App/script/"
if [[ -e "LuaGenCS.inl" ]];
then
file1=$(md5 -q LuaGenCSNew.inl)
file2=$(md5 -q LuaGenCS.inl)
echo $file1
echo $file2
if [ $file1 == $file2 ]
then
echo "No CoreScript changes detected"
rm "LuaGenCSNew.inl"
else
echo "CoreScript changes detected, will require linking"
rm "LuaGenCS.inl"
mv "LuaGenCSNew.inl" "LuaGenCS.inl"
fi
else
echo "CoreScript changes detected, will require linking"
mv "LuaGenCSNew.inl" "LuaGenCS.inl"
fi
Binary file not shown.
+9
View File
@@ -0,0 +1,9 @@
# configuration file template for the script compiler
# make a copy this file, name it 'rsc.config', then modify it to point to your local files
#
# Run rsc --helpcfg for more info
#
output = ../../App/script/LuaGenCSNew.inl
source = ../../content/scripts
+9
View File
@@ -0,0 +1,9 @@
# configuration file template for the script compiler
# make a copy this file, name it 'rsc.config', then modify it to point to your local files
#
# Run rsc --helpcfg for more info
#
output = ../../App/script/LuaGenCSNew.inl
source = ../../content/scripts
source2 = ../../PlatformContent/durango/scripts/ui