예제 #1
0
파일: Viewport.cs 프로젝트: corefan/urho
		public Viewport(Scene scene, Camera camera, Urho.IntRect rect, RenderPath renderPath) 
			: this(Application.CurrentContext, scene, camera, rect, renderPath) {}
예제 #2
0
 public SoundLeaf(Urho.Sound mat)
 {
     sound_ = mat;
     path_ = mat.Name;
 }
예제 #3
0
 public ElementLeaf(Urho.Element mat)
 {
     material_ = mat;
     path_ = mat.Name;
 }
예제 #4
0
 public MaterialLeaf(Urho.Material mat)
 {
     material_ = mat;
     path_ = mat.Name;
 }
예제 #5
0
 public EffectLeaf(Urho.ParticleEffect effect)
 {
     Name = effect.Name;
     effect_ = effect;
 }