Search Unity

Bug FizzySteamWorks error

Discussion in 'Editor & General Support' started by ChunderFam, Apr 22, 2023.

  1. ChunderFam

    ChunderFam

    Joined:
    Aug 21, 2020
    Posts:
    3
    Whenever I import FizzySteamWorks I get an error about error CS7036: There is no argument given that corresponds to the required formal parameter 'arg3' of 'Action<int, TransportError, string>.Invoke(int, TransportError, string). upload_2023-4-22_11-47-2.png
    I don't understand why this error is happening.
     
  2. Kurt-Dekker

    Kurt-Dekker

    Joined:
    Mar 16, 2013
    Posts:
    38,752
    Looks like typos to me. Otherwise the answer should be directed to FizzySteamworks forum.

    If it's you're typo, go fix it.

    The complete error message contains everything you need to know to fix the error yourself.

    The important parts of the error message are:

    - the description of the error itself (google this; you are NEVER the first one!)
    - the file it occurred in (critical!)
    - the line number and character position (the two numbers in parentheses)
    - also possibly useful is the stack trace (all the lines of text in the lower console window)

    Always start with the FIRST error in the console window, as sometimes that error causes or compounds some or all of the subsequent errors. Often the error will be immediately prior to the indicated line, so make sure to check there as well.

    Look in the documentation. Every API you attempt to use is probably documented somewhere. Are you using it correctly? Are you spelling it correctly?

    All of that information is in the actual error message and you must pay attention to it. Learn how to identify it instantly so you don't have to stop your progress and fiddle around with the forum.

    Remember: NOBODY here memorizes error codes. That's not a thing. The error code is absolutely the least useful part of the error. It serves no purpose at all. Forget the error code. Put it out of your mind.
     
  3. robomarti

    robomarti

    Joined:
    Aug 5, 2020
    Posts:
    2
    I had the same problem, you must go to the file indicated on the error and change .Invoke to .DynamicInvoke on the 27 and 42 lines
     
    ChaoticStupidStudios likes this.