idle_one_second_test.lua 576 B

1234567891011121314
  1. ----------------------------------------------------------------------------------------------------
  2. --
  3. -- Copyright (c) Contributors to the Open 3D Engine Project.
  4. -- For complete copyright and license terms please see the LICENSE at the root of this distribution.
  5. --
  6. -- SPDX-License-Identifier: Apache-2.0 OR MIT
  7. --
  8. ----------------------------------------------------------------------------------------------------
  9. IDLE_SECONDS = 1
  10. Print('Going to idle for ' .. IDLE_SECONDS .. ' second(s)')
  11. IdleSeconds(IDLE_SECONDS)
  12. Print('Idled for ' .. IDLE_SECONDS .. ' second(s)')