View LinkXmlGenerator.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Reflection; | |
using System.Xml; | |
using UnityEditor; | |
using UnityEngine; | |
public class LinkXmlGenerator { |
View cvconvertcolor.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from PIL import Image | |
import sys | |
args = sys.argv | |
argc = len(args) | |
files = args[1:argc] | |
def convert_img(file): | |
img = Image.open(file) |
View convertcolor.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from PIL import Image | |
import sys | |
args = sys.argv | |
argc = len(args) | |
files = args[1:argc] | |
def convert_img(file): | |
img = Image.open(file) |