#==============================================================================
# ** Multi-threader snippet by Omegazion
#------------------------------------------------------------------------------
# This snippet allows you to run your game in multiple threads, allowing
# you to test different things simultaneously.
#
# You can only run this during play test at the RPGVX's editor.
#==============================================================================
BEGIN {
#----------------------------------------------------------------------------
# * Set the number of additional threads here
#----------------------------------------------------------------------------
number_of_additional_threads = 4
#==============================================================================
if $TEST
number_of_additional_threads.times do
Thread.new{ system( "Game")}
end
else
$TEST = true
end
}
# ** Multi-threader snippet by Omegazion
#------------------------------------------------------------------------------
# This snippet allows you to run your game in multiple threads, allowing
# you to test different things simultaneously.
#
# You can only run this during play test at the RPGVX's editor.
#==============================================================================
BEGIN {
#----------------------------------------------------------------------------
# * Set the number of additional threads here
#----------------------------------------------------------------------------
number_of_additional_threads = 4
#==============================================================================
if $TEST
number_of_additional_threads.times do
Thread.new{ system( "Game")}
end
else
$TEST = true
end
}