正規化座標(u, v)でフィルタリングされたピクセルのカラーを取得します
Coordinates u
and v
go from 0.0 to 1.0, just like UV coordinates in meshes.
If coordinates are out of bounds (larger than 1.0 or smaller than 0.0),
they will be clamped or repeated based on the texture's wrap mode.
Texture coordinates start at lower left corner. UV of (0,0) lands exactly on the bottom
left texel; and UV of ((width-1)/width, (height-1)/height) lands exactly on the top right
texel.
返ったピクセルカラーはバイリニアフィルタリングされます。
The texture must have the read/write enabled flag set in the texture import settings, otherwise this function will fail. GetPixelBilinear is not available on Textures using Crunch texture compression.
関連項目: GetPixel.
using UnityEngine;
public class Example : MonoBehaviour { // "Warp" a texture by squashing its pixels to one side. // This involves sampling the image at non-integer pixel // positions to ensure a smooth effect.
// Source image. public Texture2D sourceTex;
// Amount of "warping". public float warpFactor = 1.0f;
Texture2D destTex; Color[] destPix;
void Start() { // Set up a new texture with the same dimensions as the original. destTex = new Texture2D(sourceTex.width, sourceTex.height); destPix = new Color[destTex.width * destTex.height];
// For each pixel in the destination texture... for (var y = 0; y < destTex.height; y++) { for (var x = 0; x < destTex.width; x++) { // Calculate the fraction of the way across the image // that this pixel positon corresponds to. float xFrac = x * 1.0f / (destTex.width - 1); float yFrac = y * 1.0f / (destTex.height - 1);
// Take the fractions (0..1)and raise them to a power to apply // the distortion. float warpXFrac = Mathf.Pow(xFrac, warpFactor); float warpYFrac = Mathf.Pow(yFrac, warpFactor);
// Get the non-integer pixel positions using GetPixelBilinear. destPix[y * destTex.width + x] = sourceTex.GetPixelBilinear(warpXFrac, warpYFrac); } }
// Copy the pixel data to the destination texture and apply the change. destTex.SetPixels(destPix); destTex.Apply();
// Set our object's texture to the newly warped image. GetComponent<Renderer>().material.mainTexture = destTex; } }
関連項目: GetPixel.
Did you find this page useful? Please give it a rating:
Thanks for rating this page!
What kind of problem would you like to report?
Thanks for letting us know! This page has been marked for review based on your feedback.
If you have time, you can provide more information to help us fix the problem faster.
Provide more information
You've told us this page needs code samples. If you'd like to help us further, you could provide a code sample, or tell us about what kind of code sample you'd like to see:
You've told us there are code samples on this page which don't work. If you know how to fix it, or have something better we could use instead, please let us know:
You've told us there is information missing from this page. Please tell us more about what's missing:
You've told us there is incorrect information on this page. If you know what we should change to make it correct, please tell us:
You've told us this page has unclear or confusing information. Please tell us more about what you found unclear or confusing, or let us know how we could make it clearer:
You've told us there is a spelling or grammar error on this page. Please tell us what's wrong:
You've told us this page has a problem. Please tell us more about what's wrong:
Thank you for helping to make the Unity documentation better!
Your feedback has been submitted as a ticket for our documentation team to review.
We are not able to reply to every ticket submitted.