Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
This post has been wikified, any user with enough reputation can edit it.
avatar image
0
Question by Gascoine_17 · Feb 06, 2017 at 08:30 AM · gameobject3dunity53d modelgame development

Question about 2D to 3D,Sprite to 3D game objects

Hello good day. I got this code and this code uses sprite as chess pieces. All I want to do is to use 3D game objects instead of sprite. And I am confused on how to do that. I already got the code and it is using sprite as chess pieces. I want to use 3D models as chess piece instead of 2D sprites.

 [Serializable]
 public class PieceSet
 {
     public Sprite Pawn;
     public Sprite Bishop;
     public Sprite Knight;
     public Sprite Rook;
     public Sprite Queen;
     public Sprite King;
     public Sprite Square;
 }

 /// <summary>
 /// White pieces.
 /// </summary>
 public PieceSet WhitePieces;

 /// <summary>
 /// Black pieces.
 /// </summary>
 public PieceSet BlackPieces;






                  GameObject obj = Instantiate(SquareObj, Vector3.zero, Quaternion.identity) as GameObject;
         obj.transform.SetParent(CanvasTr, true); //set parent
         obj.transform.localPosition = new Vector3(-244 + 64 * x, 204 - 64 * y, 0); //Position it

         PieceMover pm = obj.GetComponent<PieceMover>(); //Get piece component
         pm.index = i; //Set index 
         pm.manager = this; //Set manager reference

         if ((i + y) % 2 == 0) //Change sprites according to squares
         {
             obj.GetComponent<Image>().sprite = WhitePieces.Square; //White square
         }
         else
             obj.GetComponent<Image>().sprite = BlackPieces.Square; //Black square

         //Save a square in a squares array at right index
         SquaresObj[i] = obj.transform;
Comment
Add comment · Show 2
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image game4444 · Feb 06, 2017 at 10:26 AM 0
Share

Hi, how are you making your chess Board? this code is making with white and black sprites.If your board is madeup of planes then change materials in line 35 e.g obj.getcomponent().material = whitePieces.material; and same with black pieces. Remaining just change public sprites to public GameObject and drag drop your 3D gameObjects there. This would be bit difficult to change 2D to 3D because in every script you have to check 2d,3d properties like sprites, sprite renderers and images replace them all with GameObject , meshRenderers and materials accordingly. This is just my opinion.

avatar image Gascoine_17 game4444 · Feb 06, 2017 at 01:24 PM 0
Share

Thanks! I will try that :) I will let you know if your idea works. Thanks a lot.

0 Replies

· Add your reply
  • Sort: 

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

6 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Separate Objects after Mouse Clicking in Unity 5.6.4 1 Answer

Place gameobject on ROI 0 Answers

how to set an object on a path,how to set an object on a track 0 Answers

New Object Instantiation from Array working in Start() but not Update() 0 Answers

how do I instantiate random gameobject every certrain meters the player moves? 1 Answer


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges