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 /
avatar image
0
Question by Natrion · Feb 22, 2010 at 09:06 PM · transformmeshmodel

transform.active question - Model Mesh Scripting

I have a fully animated orc model with a sword.

The sword is a Child mesh deep within the hierachy of the model itself.

Now I want the orc to start the game without his sword. If i click down the models hierachy I can simply click the box and disable the mesh. But.. now I want to do this in code.

So.. i used this:

Private Transform Sword; Private bool isSwordActive;

Start() { isSwordActive = false; Sword = transform.Find("Sword");

if (isSwordActive) { Sword.active = true; } else { Sword.active = false; } }

Now this has generated a ton of errors, from null ref errors to the entire model not animating anymore, to the model not updating at all again. Also got an error saying something like "the .active property is redundant."

Can anyone tell me how to disable parts(s) of a models meshes in code?

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

2 Replies

· Add your reply
  • Sort: 
avatar image
2
Best Answer

Answer by duck · Feb 22, 2010 at 09:16 PM

If you just want to make it invisible, you just want to disable the renderer component of that object.

Do it like this:
(also note the change in case - the convention is to use lowerCase for variables, UpperCase for function names and classes)

private Transform sword; private bool isSwordActive;

Start() { isSwordActive = false; sword = transform.Find("Sword");

if (isSwordActive) { sword.renderer.enabled = true; } else { sword.renderer.enabled = false; } }

And yes, the "active" property is used on GameObjects themselves, to activate and deactivate them (so that they are effectively remove entirely from the scene), whereas the "enabled" property relates to components which are attached to GameObjects, allowing you to enable or disable various aspects of the GameObject.

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

Answer by Natrion · Feb 22, 2010 at 11:25 PM

Thanks, thats great!

I can ducktape the code from there. But what if I do want to remove the entire sword? It would make the combat collision code with that object alot easier since it would only be active when the actual gameObject is. Right?

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

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

No one has followed this question yet.

Related Questions

The name 'Joystick' does not denote a valid type ('not found') 2 Answers

Problems with Transform.Find and GameObject.find 1 Answer

Triangle Mesh Problem 2 Answers

Raycast length must be equal to the target distance 2 Answers

Fastest Way To Save/Load a SkinnedMeshRenderer at Runtime 0 Answers


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