From 40e4a3a7687216f8173a3e7134eb5107bcdb4409 Mon Sep 17 00:00:00 2001 From: devZoGok Date: Thu, 31 Mar 2022 19:30:35 +0300 Subject: [PATCH] quick fix --- script.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/script.py b/script.py index ff18ca9..9aeaca6 100644 --- a/script.py +++ b/script.py @@ -252,9 +252,9 @@ def export(node, parentTag): lightData = node.data color = lightData.color - lighTag.set('cr', str(color[0])) - lighTag.set('cg', str(color[1])) - lighTag.set('cb', str(color[2])) + lightTag.set('cr', str(color[0])) + lightTag.set('cg', str(color[1])) + lightTag.set('cb', str(color[2])) type = lightData.type lightTag.set('type', type)