Animation sample used in skeletal animation Thread safety - This class is thread safe.
Beispiel #1
0
        public Track(Sample sample)
        {
            if (sample == null) throw new ArgumentNullException();
            this.sample = sample;

            Reset();
        }
Beispiel #2
0
		public static Sample FindSample(Sample[] samples, string name)
        {
            if (samples == null) return null;

            for (int i = 0; i < samples.Length; i++)
            {
                if (samples[i].name == name) return samples[i];
            }
            return null;
        }
Beispiel #3
0
		public Model(ShaderProgram shader, Group[] groups, Bone[] bones, Sample[] samples)
		{
			this.shader = shader;
			this.groups = groups;
			this.bones = bones;
            this.samples = samples;
			
			this.vertexTransformations = new Matrix4[maxBones];
			for (int i = 0; i < maxBones ; i++ ) 
			{
				this.vertexTransformations[i] = Matrix4.Identity;
			}
			
			Console.WriteLine(string.Format("Model created with {0} bones and {1} groups.", bones.Length, groups.Length));
			
			shader.Use();
			shader.SetSamplerUniform(sampler0UniformName, 0);
			this.boneAttribIndex = shader.FindAttribIndex(boneAttributeName);
		}