Welcome to mirror list, hosted at ThFree Co, Russian Federation.

node_particle_info.osl « shaders « osl « kernel « cycles « intern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 739982bb2c0501b7cff0321f53c618cfede97f9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* SPDX-License-Identifier: Apache-2.0
 * Copyright 2011-2022 Blender Foundation */

#include "stdcycles.h"

shader node_particle_info(output float Index = 0.0,
                          output float Random = 0.0,
                          output float Age = 0.0,
                          output float Lifetime = 0.0,
                          output point Location = point(0.0, 0.0, 0.0),
                          output float Size = 0.0,
                          output vector Velocity = point(0.0, 0.0, 0.0),
                          output vector AngularVelocity = point(0.0, 0.0, 0.0))
{
  getattribute("particle:index", Index);
  getattribute("particle:random", Random);
  getattribute("particle:age", Age);
  getattribute("particle:lifetime", Lifetime);
  getattribute("particle:location", Location);
  getattribute("particle:size", Size);
  getattribute("particle:velocity", Velocity);
  getattribute("particle:angular_velocity", AngularVelocity);
}