Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 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 /
avatar image
0
Question by SpectreNectar · Feb 23, 2012 at 11:14 PM · c#objectnullnewinstantiating

Instantiating an object returns null

Using the following code I've managed to receive the value of null.

 grid[n] = new Cell();

I'm quite inexperienced at both C# and Unity in general, but shouldn't this put a Cell into the grid array?

The line appears in this context:

 private void generate(int num) {
 
 // Create cells
 cells = num;
 grid = new Cell[cells];
 
 
 Cell prevCell = null;
 Cell thisCell;
 int n = 0;
 while(n < cells) {
     
     
     
     grid[n] = new Cell(); //Why is this null?
     thisCell = grid[n];
     thisCell.init();
     
     ...
     
 }
 

}

And the Cell class looks like this:

 public class Cell : Object {
 
 // Has adjacent
 private bool[] adjs;
 // Offset in grid
 private int col, row;
 // The actual object used
 private GameObject shape;
 
 public void init() {
     
     // Start off with no offset
     col = 0;
     row = 0;
     
     // And with no shape
     shape = null;
     
     // Also no adjacent cells known initially
     adjs = new bool[6];
     
     for( int i=0; i<6; i++ ) adjs[i] = false;
     
 }
 
 
 public void construct(GameObject s) {
     
     shape = s;
     float c = (row%2==0)? col*2.0f : col*2.0f+1.0f ;
     float r = row*2.0f;
     Instantiate(shape, new Vector3(c, r, 0.0f), Quaternion.identity);
     
 }
     
 

 public bool is_surrounded() {
     
     for( int i=0; i<6; i++ ) if(!adjs[i]) return false;
     return true;
     
 }
 

 public bool has_adj(Board.ADJ a) {
     return adjs[(int)a%6];
 }
 
 static public void connect_adj(Cell c1, Cell c2, Board.ADJ a) {
     c1.adjs[(int)a] = true;
     c2.adjs[((int)a+3)%6] = true;
 }
 
 static public void disconnect_adj(Cell c1, Cell c2, Board.ADJ a) {
     c1.adjs[(int)a] = false;
     c2.adjs[((int)a+3)%6] = false;
 }
 
 public int find_col(Board.ADJ a) {
     
     int c = 0;
     
     switch(a) {
         case Board.ADJ.a1:
             c = col+1;
         break;
         case Board.ADJ.a2:
             c = (row%2==0)? col+1 : col ;
         break;
         case Board.ADJ.a3:
             c = (row%2==0)? col : col-1 ;
         break;
         case Board.ADJ.a4:
             c = col-1;
         break;
         case Board.ADJ.a5:
             c = (row%2==0)? col : col-1 ;
         break;
         case Board.ADJ.a6:
             c = (row%2==0)? col+1 : col ;
         break;
     }
     
     return c;
 }
 
 public int find_row(Board.ADJ a) {
     
     int r = 0;
     
     switch(a) {
         case Board.ADJ.a1:
             r = row;
         break;
         case Board.ADJ.a2:
             r = row-1;
         break;
         case Board.ADJ.a3:
             r = row-1;
         break;
         case Board.ADJ.a4:
             r = row;
         break;
         case Board.ADJ.a5:
             r = row+1;
         break;
         case Board.ADJ.a6:
             r = row+1;
         break;
     }
     
     return r;
 }
 
 public int get_col() {
     return col;
 }
 
 public int get_row() {
     return row;
 }
 
 public void set_cell(int c, int r) {
     col = c;
     row = r;
 }
 

}

Why does this happen?

Comment
Add comment
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

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

5 People are following this question.

avatar image avatar image avatar image avatar image avatar image

Related Questions

Verify if a Component is null 3 Answers

Distribute terrain in zones 3 Answers

C# Null Object Reference - Driving me mad! 1 Answer

Object getting destroyed ? 1 Answer

Multiple Cars not working 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