variable not updating on other script2019 Community Moderator ElectionHow do I update the GUI from another thread?Is there a reason for C#'s reuse of the variable in a foreach?Entity Framework 5 Updating a RecordHow to check for null in this specific situationBasic Architecture / Handling many GameObjects with different update strategiesChecking Animator on Unity script only work on first ObjectUnity game - Only assignment, call, increment, decrement, await, and new object expressions can be used as a statementGameObject activates too soonPrefab clone does not have script component attachedReading from file more efficient than GameObject.Find?

How to educate team mate to take screenshots for bugs with out unwanted stuff

Does the US political system, in principle, allow for a no-party system?

What do you call someone who likes to pick fights?

Can I negotiate a patent idea for a raise, under French law?

Mixed Feelings - What am I

How can I have x-axis ticks that show ticks scaled in powers of ten?

Generating a list with duplicate entries

Boss Telling direct supervisor I snitched

Professor forcing me to attend a conference, I can't afford even with 50% funding

Is it a Cyclops number? "Nobody" knows!

Who has more? Ireland or Iceland?

Did Amazon pay $0 in taxes last year?

What is the oldest European royal house?

How spaceships determine each other's mass in space?

3.5% Interest Student Loan or use all of my savings on Tuition?

Why isn't P and P/poly trivially the same?

ESPP--any reason not to go all in?

What would be the most expensive material to an intergalactic society?

Is divide-by-zero a security vulnerability?

Propulsion Systems

direct sum of representation of product groups

PTIJ: Sport in the Torah

Inorganic chemistry handbook with reaction lists

What is the orbit and expected lifetime of Crew Dragon trunk?



variable not updating on other script



2019 Community Moderator ElectionHow do I update the GUI from another thread?Is there a reason for C#'s reuse of the variable in a foreach?Entity Framework 5 Updating a RecordHow to check for null in this specific situationBasic Architecture / Handling many GameObjects with different update strategiesChecking Animator on Unity script only work on first ObjectUnity game - Only assignment, call, increment, decrement, await, and new object expressions can be used as a statementGameObject activates too soonPrefab clone does not have script component attachedReading from file more efficient than GameObject.Find?










0















So this is in line with another question i asked but im taking a different route. The question i have is in this script i am finding the level of the player from the LevelManager script. Im going to use a different panel for each player level and make them active as the level increases. Not the best way i understand. The problem i am having is that level in this script is not updating with currentLevel in my other script so the panels are not turning on because the level is always 0. Any help is appreciated. Neil



public GameObject Panel1;
public GameObject Panel2;
public GameObject Panel3;
public GameObject levelscript;
public int level;

public void Start()

GameObject scoreEventTrigger = GameObject.Find("ScoreEventTrigger");
LevelManager levelManager = scoreEventTrigger.GetComponent<LevelManager>();
level = levelManager.currentLevel;


public void OpenPanel1()

if (level == 1)

if (Panel1 != null)

Panel1.SetActive(true);



public void OpenPanel2()

if (level == 2)

if (Panel2 != null)

Panel2.SetActive(true);





}










share|improve this question







New contributor




Neil is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.




















  • This looks okay to me. Are you sure you are correctly adjusting currentLevel in LevelManager?

    – Ali Kanat
    2 days ago











  • Thanks for replying @AliKanat. Yup the score adjusts perfectly in the game. Just not on the button this script is attached to.

    – Neil
    2 days ago















0















So this is in line with another question i asked but im taking a different route. The question i have is in this script i am finding the level of the player from the LevelManager script. Im going to use a different panel for each player level and make them active as the level increases. Not the best way i understand. The problem i am having is that level in this script is not updating with currentLevel in my other script so the panels are not turning on because the level is always 0. Any help is appreciated. Neil



public GameObject Panel1;
public GameObject Panel2;
public GameObject Panel3;
public GameObject levelscript;
public int level;

public void Start()

GameObject scoreEventTrigger = GameObject.Find("ScoreEventTrigger");
LevelManager levelManager = scoreEventTrigger.GetComponent<LevelManager>();
level = levelManager.currentLevel;


public void OpenPanel1()

if (level == 1)

if (Panel1 != null)

Panel1.SetActive(true);



public void OpenPanel2()

if (level == 2)

if (Panel2 != null)

Panel2.SetActive(true);





}










share|improve this question







New contributor




Neil is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.




















  • This looks okay to me. Are you sure you are correctly adjusting currentLevel in LevelManager?

    – Ali Kanat
    2 days ago











  • Thanks for replying @AliKanat. Yup the score adjusts perfectly in the game. Just not on the button this script is attached to.

    – Neil
    2 days ago













0












0








0








So this is in line with another question i asked but im taking a different route. The question i have is in this script i am finding the level of the player from the LevelManager script. Im going to use a different panel for each player level and make them active as the level increases. Not the best way i understand. The problem i am having is that level in this script is not updating with currentLevel in my other script so the panels are not turning on because the level is always 0. Any help is appreciated. Neil



public GameObject Panel1;
public GameObject Panel2;
public GameObject Panel3;
public GameObject levelscript;
public int level;

public void Start()

GameObject scoreEventTrigger = GameObject.Find("ScoreEventTrigger");
LevelManager levelManager = scoreEventTrigger.GetComponent<LevelManager>();
level = levelManager.currentLevel;


public void OpenPanel1()

if (level == 1)

if (Panel1 != null)

Panel1.SetActive(true);



public void OpenPanel2()

if (level == 2)

if (Panel2 != null)

Panel2.SetActive(true);





}










share|improve this question







New contributor




Neil is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.












So this is in line with another question i asked but im taking a different route. The question i have is in this script i am finding the level of the player from the LevelManager script. Im going to use a different panel for each player level and make them active as the level increases. Not the best way i understand. The problem i am having is that level in this script is not updating with currentLevel in my other script so the panels are not turning on because the level is always 0. Any help is appreciated. Neil



public GameObject Panel1;
public GameObject Panel2;
public GameObject Panel3;
public GameObject levelscript;
public int level;

public void Start()

GameObject scoreEventTrigger = GameObject.Find("ScoreEventTrigger");
LevelManager levelManager = scoreEventTrigger.GetComponent<LevelManager>();
level = levelManager.currentLevel;


public void OpenPanel1()

if (level == 1)

if (Panel1 != null)

Panel1.SetActive(true);



public void OpenPanel2()

if (level == 2)

if (Panel2 != null)

Panel2.SetActive(true);





}







c# user-interface unity3d






share|improve this question







New contributor




Neil is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











share|improve this question







New contributor




Neil is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









share|improve this question




share|improve this question






New contributor




Neil is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









asked 2 days ago









NeilNeil

11




11




New contributor




Neil is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





New contributor





Neil is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.






Neil is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.












  • This looks okay to me. Are you sure you are correctly adjusting currentLevel in LevelManager?

    – Ali Kanat
    2 days ago











  • Thanks for replying @AliKanat. Yup the score adjusts perfectly in the game. Just not on the button this script is attached to.

    – Neil
    2 days ago

















  • This looks okay to me. Are you sure you are correctly adjusting currentLevel in LevelManager?

    – Ali Kanat
    2 days ago











  • Thanks for replying @AliKanat. Yup the score adjusts perfectly in the game. Just not on the button this script is attached to.

    – Neil
    2 days ago
















This looks okay to me. Are you sure you are correctly adjusting currentLevel in LevelManager?

– Ali Kanat
2 days ago





This looks okay to me. Are you sure you are correctly adjusting currentLevel in LevelManager?

– Ali Kanat
2 days ago













Thanks for replying @AliKanat. Yup the score adjusts perfectly in the game. Just not on the button this script is attached to.

– Neil
2 days ago





Thanks for replying @AliKanat. Yup the score adjusts perfectly in the game. Just not on the button this script is attached to.

– Neil
2 days ago












1 Answer
1






active

oldest

votes


















1














Your loading your script only on start.
You need to check your levelscore when you fire some event, for example "onGetXp". On this event you check your level and apply panel.






share|improve this answer























  • Thanks for this. It makes sense. Can you post an example for me? i tried making a new function and also tried it in the update function. Thanks in advance for your help @joreldraw

    – Neil
    2 days ago











  • For a good example i need to know more about your xp or score system and your Levelmanager. But the easy way is to check your level everytime you got xp or score, not only on the start. if not you only check 1 time your level at the beggining.

    – joreldraw
    yesterday











  • Would a button onclick method work here? because i increment xp in a ontriggerenter event and then when currentxp >= neededxp i call the LevelUp function. So could i create a function in the above script that calls everything in the start method an instead calls it inside a button onclick event and then assign that in the inspector? Would that work? Or what other information do you need to know? Thank you again for your help @joreldraw

    – Neil
    yesterday











  • Would work if is the only way to increment xp, ontriggerenter you do all what you do for the xp and last call the levelup function to check.

    – joreldraw
    yesterday











  • Can you provide an example or do you need more information? The ontriggerenter function is the only way that the player gets xp. @joreldraw

    – Neil
    yesterday










Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);






Neil is a new contributor. Be nice, and check out our Code of Conduct.









draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55023441%2fvariable-not-updating-on-other-script%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









1














Your loading your script only on start.
You need to check your levelscore when you fire some event, for example "onGetXp". On this event you check your level and apply panel.






share|improve this answer























  • Thanks for this. It makes sense. Can you post an example for me? i tried making a new function and also tried it in the update function. Thanks in advance for your help @joreldraw

    – Neil
    2 days ago











  • For a good example i need to know more about your xp or score system and your Levelmanager. But the easy way is to check your level everytime you got xp or score, not only on the start. if not you only check 1 time your level at the beggining.

    – joreldraw
    yesterday











  • Would a button onclick method work here? because i increment xp in a ontriggerenter event and then when currentxp >= neededxp i call the LevelUp function. So could i create a function in the above script that calls everything in the start method an instead calls it inside a button onclick event and then assign that in the inspector? Would that work? Or what other information do you need to know? Thank you again for your help @joreldraw

    – Neil
    yesterday











  • Would work if is the only way to increment xp, ontriggerenter you do all what you do for the xp and last call the levelup function to check.

    – joreldraw
    yesterday











  • Can you provide an example or do you need more information? The ontriggerenter function is the only way that the player gets xp. @joreldraw

    – Neil
    yesterday















1














Your loading your script only on start.
You need to check your levelscore when you fire some event, for example "onGetXp". On this event you check your level and apply panel.






share|improve this answer























  • Thanks for this. It makes sense. Can you post an example for me? i tried making a new function and also tried it in the update function. Thanks in advance for your help @joreldraw

    – Neil
    2 days ago











  • For a good example i need to know more about your xp or score system and your Levelmanager. But the easy way is to check your level everytime you got xp or score, not only on the start. if not you only check 1 time your level at the beggining.

    – joreldraw
    yesterday











  • Would a button onclick method work here? because i increment xp in a ontriggerenter event and then when currentxp >= neededxp i call the LevelUp function. So could i create a function in the above script that calls everything in the start method an instead calls it inside a button onclick event and then assign that in the inspector? Would that work? Or what other information do you need to know? Thank you again for your help @joreldraw

    – Neil
    yesterday











  • Would work if is the only way to increment xp, ontriggerenter you do all what you do for the xp and last call the levelup function to check.

    – joreldraw
    yesterday











  • Can you provide an example or do you need more information? The ontriggerenter function is the only way that the player gets xp. @joreldraw

    – Neil
    yesterday













1












1








1







Your loading your script only on start.
You need to check your levelscore when you fire some event, for example "onGetXp". On this event you check your level and apply panel.






share|improve this answer













Your loading your script only on start.
You need to check your levelscore when you fire some event, for example "onGetXp". On this event you check your level and apply panel.







share|improve this answer












share|improve this answer



share|improve this answer










answered 2 days ago









joreldrawjoreldraw

1,143719




1,143719












  • Thanks for this. It makes sense. Can you post an example for me? i tried making a new function and also tried it in the update function. Thanks in advance for your help @joreldraw

    – Neil
    2 days ago











  • For a good example i need to know more about your xp or score system and your Levelmanager. But the easy way is to check your level everytime you got xp or score, not only on the start. if not you only check 1 time your level at the beggining.

    – joreldraw
    yesterday











  • Would a button onclick method work here? because i increment xp in a ontriggerenter event and then when currentxp >= neededxp i call the LevelUp function. So could i create a function in the above script that calls everything in the start method an instead calls it inside a button onclick event and then assign that in the inspector? Would that work? Or what other information do you need to know? Thank you again for your help @joreldraw

    – Neil
    yesterday











  • Would work if is the only way to increment xp, ontriggerenter you do all what you do for the xp and last call the levelup function to check.

    – joreldraw
    yesterday











  • Can you provide an example or do you need more information? The ontriggerenter function is the only way that the player gets xp. @joreldraw

    – Neil
    yesterday

















  • Thanks for this. It makes sense. Can you post an example for me? i tried making a new function and also tried it in the update function. Thanks in advance for your help @joreldraw

    – Neil
    2 days ago











  • For a good example i need to know more about your xp or score system and your Levelmanager. But the easy way is to check your level everytime you got xp or score, not only on the start. if not you only check 1 time your level at the beggining.

    – joreldraw
    yesterday











  • Would a button onclick method work here? because i increment xp in a ontriggerenter event and then when currentxp >= neededxp i call the LevelUp function. So could i create a function in the above script that calls everything in the start method an instead calls it inside a button onclick event and then assign that in the inspector? Would that work? Or what other information do you need to know? Thank you again for your help @joreldraw

    – Neil
    yesterday











  • Would work if is the only way to increment xp, ontriggerenter you do all what you do for the xp and last call the levelup function to check.

    – joreldraw
    yesterday











  • Can you provide an example or do you need more information? The ontriggerenter function is the only way that the player gets xp. @joreldraw

    – Neil
    yesterday
















Thanks for this. It makes sense. Can you post an example for me? i tried making a new function and also tried it in the update function. Thanks in advance for your help @joreldraw

– Neil
2 days ago





Thanks for this. It makes sense. Can you post an example for me? i tried making a new function and also tried it in the update function. Thanks in advance for your help @joreldraw

– Neil
2 days ago













For a good example i need to know more about your xp or score system and your Levelmanager. But the easy way is to check your level everytime you got xp or score, not only on the start. if not you only check 1 time your level at the beggining.

– joreldraw
yesterday





For a good example i need to know more about your xp or score system and your Levelmanager. But the easy way is to check your level everytime you got xp or score, not only on the start. if not you only check 1 time your level at the beggining.

– joreldraw
yesterday













Would a button onclick method work here? because i increment xp in a ontriggerenter event and then when currentxp >= neededxp i call the LevelUp function. So could i create a function in the above script that calls everything in the start method an instead calls it inside a button onclick event and then assign that in the inspector? Would that work? Or what other information do you need to know? Thank you again for your help @joreldraw

– Neil
yesterday





Would a button onclick method work here? because i increment xp in a ontriggerenter event and then when currentxp >= neededxp i call the LevelUp function. So could i create a function in the above script that calls everything in the start method an instead calls it inside a button onclick event and then assign that in the inspector? Would that work? Or what other information do you need to know? Thank you again for your help @joreldraw

– Neil
yesterday













Would work if is the only way to increment xp, ontriggerenter you do all what you do for the xp and last call the levelup function to check.

– joreldraw
yesterday





Would work if is the only way to increment xp, ontriggerenter you do all what you do for the xp and last call the levelup function to check.

– joreldraw
yesterday













Can you provide an example or do you need more information? The ontriggerenter function is the only way that the player gets xp. @joreldraw

– Neil
yesterday





Can you provide an example or do you need more information? The ontriggerenter function is the only way that the player gets xp. @joreldraw

– Neil
yesterday












Neil is a new contributor. Be nice, and check out our Code of Conduct.









draft saved

draft discarded


















Neil is a new contributor. Be nice, and check out our Code of Conduct.












Neil is a new contributor. Be nice, and check out our Code of Conduct.











Neil is a new contributor. Be nice, and check out our Code of Conduct.














Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55023441%2fvariable-not-updating-on-other-script%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Save data to MySQL database using ExtJS and PHP [closed]2019 Community Moderator ElectionHow can I prevent SQL injection in PHP?Which MySQL data type to use for storing boolean valuesPHP: Delete an element from an arrayHow do I connect to a MySQL Database in Python?Should I use the datetime or timestamp data type in MySQL?How to get a list of MySQL user accountsHow Do You Parse and Process HTML/XML in PHP?Reference — What does this symbol mean in PHP?How does PHP 'foreach' actually work?Why shouldn't I use mysql_* functions in PHP?

Compiling GNU Global with universal-ctags support Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Data science time! April 2019 and salary with experience The Ask Question Wizard is Live!Tags for Emacs: Relationship between etags, ebrowse, cscope, GNU Global and exuberant ctagsVim and Ctags tips and trickscscope or ctags why choose one over the other?scons and ctagsctags cannot open option file “.ctags”Adding tag scopes in universal-ctagsShould I use Universal-ctags?Universal ctags on WindowsHow do I install GNU Global with universal ctags support using Homebrew?Universal ctags with emacsHow to highlight ctags generated by Universal Ctags in Vim?

Add ONERROR event to image from jsp tldHow to add an image to a JPanel?Saving image from PHP URLHTML img scalingCheck if an image is loaded (no errors) with jQueryHow to force an <img> to take up width, even if the image is not loadedHow do I populate hidden form field with a value set in Spring ControllerStyling Raw elements Generated from JSP tagds with Jquery MobileLimit resizing of images with explicitly set width and height attributeserror TLD use in a jsp fileJsp tld files cannot be resolved