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 BillyMcTreeSnap · Mar 11, 2013 at 09:52 PM · basicvarprint

Why won't values show in inspector or print in console?

The script in inspector shows all of the vars but all show 0 even the set ones from the Object. As well, when I attach this script to my camera and start it does not print the vars I ask it to. Thank you for your time! When I run the game I still see 0 in the inspector and if I use Debug.log() instead of print it does not show anything in the console either.

 class CharacterAttributes {
 
 var name : String;
 var level : int;
 var hp : int;
 var mp: int;
 
 var strength : int;
 var dexterity : int;
 var vitality : int;
 var magic : int;
 var spirit : int;
 var luck : int;
 
 var attack : int;
 var attackPercent : int;
 var defense : int;
 var defensePercent : int;
 var magicAtk : int;
 var magicDef : int;
 var magicDefPercent : int;
 
 var exp : int;
 
 function limitBreak (){
 
 Debug.Log("Limit Break");
 
 }
 }
 
 var cidAttributes : CharacterAttributes = new CharacterAttributes();
 var cloudAttributes : CharacterAttributes = new CharacterAttributes();
 
 function start () {
 cidAttributes.level = 99;
 cidAttributes.name = "Cid";
 cidAttributes.hp = 9433;
 cidAttributes.mp = 999;
 
 
 cidAttributes.strength = 255;
 cidAttributes.dexterity = 255;
 cidAttributes.vitality = 255;
 cidAttributes.magic = 255;
 cidAttributes.spirit = 255;
 cidAttributes.luck = 254;
 
 cidAttributes.attack = 255;
 cidAttributes.attackPercent = 103;
 cidAttributes.magicAtk = 255;
 cidAttributes.magicDef = 255;
 cidAttributes.magicDefPercent = 60;
 
 cidAttributes.exp = 5478421;
 cloudAttributes.level = 70;
 
 print(cidAttributes.level);
 print(cloudAttributes.level);
 cidAttributes.limitBreak();
 }
 
 
 
 function Update () {
 
 }
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

1 Reply

· Add your reply
  • Sort: 
avatar image
1

Answer by DaveA · Mar 11, 2013 at 10:05 PM

First, if you want to 'see' these outside of the script (like in another script or Inspector) you need to make them public.

Second, it's Start, not start, so your 'start' is never called. Everything will default to 0 and stay that way. Capitalize Start and you'll be getting somewhere.

Comment
Add comment · Show 1 · Share
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 BillyMcTreeSnap · Mar 11, 2013 at 10:27 PM 0
Share

That was what I needed to know, thank you so much!

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

11 People are following this question.

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

Related Questions

Multiple Cars not working 1 Answer

each enemy have different damage amount, how to calculate the hp remain??? 1 Answer

Help with Basic Movement Script 1 Answer

On var enter 1 Answer

Need Help | Door Opening Script Error 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