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 Pilot · Oct 14, 2011 at 06:35 PM · controllerparentingdeactivateunparenting

JCar & FPS/TPS controller

I have setup a car model using the JCar controlled car and can drive around my scene.

I am trying to parent my FPS/TPS controller (FPSC) to the JCar on a key press ("e") and then unparent using the same key. A box collider on the JCar acts as a trigger for the parenting when the FPSC is close enough. I do have a transform.parent in my script, however for some reason it doesn't seem to have any effect whatsoever on either gameobject. A second issue is that by default the JCar controller is active, which means that when I use the navigation keys to move the FPSC the JCar moves also. So I have to "outrun" the car before I can parent to it, which isn't a very good system!

Here is my script:

 public var isDriving : boolean;



public var car;

public var fpc;

public var carcam;

public var fpccam;

car = GameObject.FindWithTag("car");

fpc = GameObject.FindWithTag("player");

carcam = GameObject.FindWithTag("carcam");

fpccam = GameObject.FindWithTag("playercam");

function OnTriggerEnter (col : Collider) {

if (isDriving == false) { isDriving = true; GetIn(); } }

function Update() {

if ((Input.GetKeyDown("e")) && ((isDriving) == true)) { isDriving = false; GetOut(); } }

function GetIn() {

fpc.transform.parent = car.transform;

fpc.GetComponent("CharacterMotor").enabled = false;

fpc.GetComponent("FPSInputController").enabled = false;

car.GetComponent("JControlledCar").enabled = true;

carcam.enabled = true;

fpccam.enabled = false; }

function GetOut() {

fpc.transform.parent = null;

fpc.GetComponent("CharacterMotor").enabled = true;

fpc.GetComponent("FPSInputController").enabled = true;

car.GetComponent("JControlledCar").enabled = false;

carcam.enabled = false; fpccam.enabled = true; }

.

Can anybody see what I am doing wrong? I have been trying to resolve this for a few days now :(

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
Best Answer

Answer by ScriptGirl · Oct 19, 2011 at 04:30 PM

The easiest way I found to do this would be:

A) Parent the controller to your Jcar vehicle when they enter a collider/disable it's mesh renderer and collider

B) Switch off the controller and cameras with GetKey

Hope this helps!

Comment
Add comment · Show 2 · 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 Pilot · Oct 19, 2011 at 04:43 PM 1
Share

in (b) you meant "switch the Jcar controller off" correct?

avatar image ScriptGirl · Oct 19, 2011 at 04:46 PM 0
Share

aha, my bad ;)

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

3 People are following this question.

avatar image avatar image avatar image

Related Questions

Changing parent after deactivation error? 1 Answer

Parenting and Unparenting a GameObject that has a Rigidbody 2 Answers

Multiple controllers on same Player object... 1 Answer

Creating a function that parents player to object and then unparents it 1 Answer

Controlling child sprites with one animator? 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