Skip to content

Commit 16608b2

Browse files
author
Roberto De Ioris
authored
Update WritingAColladaFactoryWithPython.md
1 parent 66edc6b commit 16608b2

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tutorials/WritingAColladaFactoryWithPython.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,6 @@ class ColladaFactory(PyFactory):
122122
self.Formats = ['dae;Collada']
123123
# set the UClass this UFactory will generate
124124
self.SupportedClass = StaticMesh
125-
ue.log(dir(self))
126125

127126
# this functions starts with an uppercase letter, so it will be visible to the UE system
128127
# not required obviously, but it will be a good example
@@ -165,7 +164,7 @@ class ColladaFactory(PyFactory):
165164
# fix mesh data
166165
self.FixMeshData()
167166

168-
# create a new mesh, FRawMesh is an ptopmized wrapper exposed by the python plugin. read: no reflection involved
167+
# create a new mesh, FRawMesh is an optimized wrapper exposed by the python plugin. read: no reflection involved
169168
mesh = FRawMesh()
170169
# assign vertices
171170
mesh.set_vertex_positions(self.vertices)

0 commit comments

Comments
 (0)