mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-06 05:37:48 +00:00
GEEKING
This commit is contained in:
@@ -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.
@@ -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
|
||||
|
||||
@@ -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
|
||||
Reference in New Issue
Block a user