浏览代码

Fix OBJ parsing when there's no material file

Daniel Salvadori 4 年之前
父节点
当前提交
84753eeaf1
共有 1 个文件被更改,包括 0 次插入1 次删除
  1. 0 1
      loader/obj/obj.go

+ 0 - 1
loader/obj/obj.go

@@ -401,7 +401,6 @@ func (dec *Decoder) loadTex(mat *material.Material, desc *Material) error {
 // parse reads the lines from the specified reader and dispatch them
 // to the specified line parser.
 func (dec *Decoder) parse(reader io.Reader, parseLine func(string) error) error {
-	fmt.Println("Hi!", reader)
 	bufin := bufio.NewReader(reader)
 	dec.line = 1
 	for {