Search Unity

Unity Required Coding or Script?

Discussion in 'Scripting' started by zalimdaner, Dec 28, 2020.

  1. zalimdaner

    zalimdaner

    Joined:
    Sep 27, 2020
    Posts:
    21
    I saw some tutorials for making basic game Bricks Breaker and what i saw in tutorial Unity required coding / script?

    I thought Unity without coding even single line
     
  2. SparrowGS

    SparrowGS

    Joined:
    Apr 6, 2017
    Posts:
    2,536
    There are some solutions that require no "coding", it's called visual scripting, it's still works like traditional code but instead of writing text line by line you connect logic nodes in a visual manner.

    You could try and do that, it's becoming more and more supported as time goes on, but basic coding is very easy to learn and will surely pay out to have under your belt.

    https://www.youtube.com/results?search_query=unity+visual+scripting
     
  3. Joe-Censored

    Joe-Censored

    Joined:
    Mar 26, 2013
    Posts:
    11,847
    Unity has features which don't require any coding. You can watch balls roll down a hill, hit blocks, watch the physics effects, etc, all without code. But games require their own custom logic for the actual game part. That logic is added via code, whether that is C# or visual scripting it is still code.

    Whether visual scripting is "coding" depends on what your definition of coding is I guess.
     
  4. zalimdaner

    zalimdaner

    Joined:
    Sep 27, 2020
    Posts:
    21
    Thanks Unity required coding skills.