Quelcode des Partikelsystems Boden
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Emitter.cpp 429B

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // Emitter.cpp
  3. // emptyExample
  4. //
  5. // Created by Sebastian Holzki on 17.04.19.
  6. //
  7. #pragma once
  8. #include "Emitter.hpp"
  9. Emitter::Emitter()
  10. {
  11. }
  12. // -----------------------------------
  13. Emitter::~Emitter()
  14. {
  15. }
  16. // -----------------------------------
  17. void Emitter::setEmitterPosition(ofVec2f _position){
  18. position = _position;
  19. }
  20. // -----------------------------------------------