예제 #1
0
 protected void PrintFbxLight(FbxLight obj, TextWriter writer)
 {
     _PrintFbxLight(obj, writer);
 }
예제 #2
0
파일: Visitor.cs 프로젝트: shoff/FbxSharp
 protected void AcceptLight(FbxLight obj, ISet <object> visitedObjects)
 {
     AcceptNodeAttribute(obj, visitedObjects);
     Visit(obj);
     throw new NotImplementedException();
 }
예제 #3
0
파일: Visitor.cs 프로젝트: shoff/FbxSharp
 public virtual void Visit(FbxLight obj)
 {
 }
예제 #4
0
파일: Visitor.cs 프로젝트: rstoki/FbxSharp
 protected void _AcceptFbxLight(FbxLight obj, ISet <object> visitedObjects)
 {
     //TODO: shadow texture
 }
예제 #5
0
        protected void AcceptFbxLight(FbxLight obj, ISet <object> visitedObjects = null)
        {
            Visit(obj);

            _AcceptFbxLight(obj, visitedObjects);
        }
예제 #6
0
 protected void _PrintFbxLight(FbxLight obj, TextWriter writer)
 {
     // TODO: writer.WriteLine("    ShadowTexture = {0}", obj.GetShadowTexture());
 }