更新:
SKTexture 最近过滤模式现在在 Xcode 7 GM 中工作。无需像我在下面建议的那样手动缩放图像。
我在带有 beta iOS 9 的 Xcode 7 beta 5 中遇到了同样的问题;最近的过滤模式似乎被忽略了。在我的项目中,最近邻缩放的缩放以前在 iOS 8 上的 Xcode 6 中工作。
如果在 iOS 9 最终版本之前未解决该错误,我会在将图像放入各自的图集中之前对图像进行预缩放。
为此,我编写了一个简单的 python 脚本来递归查找 png 文件并使用imagmagick对其进行缩放。
如果您没有安装 imagemagick,您可以使用macports安装它,如下所示:
sudo port install ImageMagick
如果你有自制软件,它看起来像这样:
brew install imagemagick
我只是将这个脚本(下面)放在我的 atlas 文件(我想将其缩放 400%)上方的目录中名为 imgscaler.py 的文件中,然后从终端启动它:
python imgscaler.py
脚本如下所示:
import subprocess
import os
import sys
import fnmatch
def main():
execution_folder_name = os.getcwd()
file_extension_name = "png"
#
# Collect names of files that will be manipulated
matches = []
for root, dirNames, fileNames in os.walk(execution_folder_name):
for filename in fnmatch.filter(fileNames, '*.' + file_extension_name):
full_name = os.path.join(root, filename)
matches.append(full_name)
scale_percentage = "400"
if not __query_yes_no("This script will scale images by " + scale_percentage + "% recursively from directory " + execution_folder_name + ". Proceed?"):
return
#
# Scale the images
for match in matches:
execution_str = "convert " + match + " -interpolate Nearest -filter point -resize " + scale_percentage + "% " + match + "\n"
sys.stdout.write(execution_str)
__run_command(execution_str)
def __run_command(input_cmd):
"""Runs a command on the terminal, and returns the output in a string array.
"""
process = subprocess.Popen(input_cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, shell=True)
output = []
while True:
line = process.stdout.readline()
if line != '':
output.append(line)
else:
break
return output
def __query_yes_no(question, default="yes"):
"""Asks a yes or no question, returns a true is answered "yes".
"""
valid = {"yes": True, "y": True, "ye": True,
"no": False, "n": False}
if default is None:
prompt = " [y/n] "
elif default == "yes":
prompt = " [Y/n] "
elif default == "no":
prompt = " [y/N] "
else:
raise ValueError("invalid default answer: '%s'" % default)
while True:
sys.stdout.write(question + prompt)
sys.stdout.flush()
choice = raw_input().lower()
if default is not None and choice == '':
sys.stdout.write(default)
sys.stdout.write('\n')
sys.stdout.flush()
return valid[default]
elif choice in valid:
sys.stdout.write(choice)
sys.stdout.write('\n')
sys.stdout.flush()
return valid[choice]
else:
sys.stdout.write("Please respond with 'yes' or 'no' (or 'y' or 'n').\n")
sys.stdout.flush()
main()
更改scale_percentage
为您想要按比例缩放的任何百分比。
顺便说一句,我猜这个缩放问题最终会得到解决。我目前正在考虑这个假设来更新我的代码。 如果SpriteKit 中最近邻缩放的修复晚于 iOS 9.0,这只是一个创可贴。