fix(helpers): camera, lights and material loading error
This commit is contained in:
@ -28,9 +28,6 @@ class RCFMessage(object):
|
||||
self.body = body
|
||||
self.id = id
|
||||
|
||||
def apply(self):
|
||||
pass
|
||||
|
||||
def store(self, dikt):
|
||||
"""Store me in a dict if I have anything to store"""
|
||||
# this currently erasing old value
|
||||
@ -41,9 +38,6 @@ class RCFMessage(object):
|
||||
else:
|
||||
dikt[self.key] = self
|
||||
|
||||
# elif self.key in dikt:
|
||||
# del dikt[self.key]
|
||||
|
||||
def send(self, socket):
|
||||
"""Send key-value message to socket; any empty frames are sent as such."""
|
||||
key = ''.encode() if self.key is None else self.key.encode()
|
||||
|
Reference in New Issue
Block a user