node_particle_info.osl 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. /*
  2. * Copyright 2011-2013 Blender Foundation
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. #include "stdosl.h"
  17. shader node_particle_info(output float Index = 0.0,
  18. output float Random = 0.0,
  19. output float Age = 0.0,
  20. output float Lifetime = 0.0,
  21. output point Location = point(0.0, 0.0, 0.0),
  22. output float Size = 0.0,
  23. output vector Velocity = point(0.0, 0.0, 0.0),
  24. output vector AngularVelocity = point(0.0, 0.0, 0.0))
  25. {
  26. getattribute("particle:index", Index);
  27. getattribute("particle:random", Random);
  28. getattribute("particle:age", Age);
  29. getattribute("particle:lifetime", Lifetime);
  30. getattribute("particle:location", Location);
  31. getattribute("particle:size", Size);
  32. getattribute("particle:velocity", Velocity);
  33. getattribute("particle:angular_velocity", AngularVelocity);
  34. }