test6_partial_line_comment.lua 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. --
  10. ----------------------------------------------------------------------------------------------------
  11. local SpawnerScriptSample =
  12. {
  13. Properties =
  14. {
  15. ScriptVar = { default = "aaaa" }
  16. }
  17. }
  18. function SpawnerScriptSample:OnActivate()
  19. -- Register our handlers to receive notification from the spawner attached to this entity.
  20. if( self.spawnerNotiBusHandler == nil ) then
  21. self.spawnerNotiBusHandler = SpawnerComponentNotificationBus.Connect(self, self.entityId)
  22. end
  23. end
  24. -- This handler is called when we start spawning a slice.
  25. function SpawnerScriptSample:OnSpawnBegin(sliceTicket)
  26. -- Do something so we know if/when this is being called
  27. -- UNIT TEST: The dependency in the comment below should not be logged by the LuaBuilder
  28. Debug.Log("Slice Spawn Begin") -- "some/path/test3.lua"
  29. end
  30. -- This handler is called when we're finished spawning a slice.
  31. function SpawnerScriptSample:OnSpawnEnd(sliceTicket)
  32. -- Do something so we know if/when this is being called
  33. Debug.Log("Slice Spawn End")
  34. end
  35. -- This handler is called whenever an entity is spawned.
  36. function SpawnerScriptSample:OnEntitySpawned(sliceTicket, entityId)
  37. -- Do something so we know if/when this is being called
  38. Debug.Log("Entity Spawned: " .. tostring(entityId) )
  39. end
  40. function SpawnerScriptSample:OnDeactivate()
  41. -- Disconnect our spawner notificaton
  42. if self.spawnerNotiBusHandler ~= nil then
  43. self.spawnerNotiBusHandler:Disconnect()
  44. self.spawnerNotiBusHandler = nil
  45. end
  46. end
  47. return SpawnerScriptSample