Tuesday, 26 April 2016

Sketchup problems

Initial attempt at creating a 3d model of block 12 from the plans. Upon realising how poor my technique is and how many technical issues im going to create this way i decided to try another method another day...


Sketch up test


Spent an hour on sketch up to see how it all works. Seems like a good thing to build my map in, however exporting from any file format removes the textures. And once in Goo I can only place Materials onto the whole thing - Not walls and floor separate. Almost making sketchup redundant at this point. Not sure what to do about this at this point. 







Monday, 25 April 2016

In browser editing

I was able to upload an exported scene from Goo create and edit in in sublime text without breaking it!


Onlick Event Testing


Creating onclick functions to test how i can make scripts to create interactive data. I made two functions activated by onclick events that directly edit the DOM elements of the html page


//attatch functions to onlick event for DOM elements
document.getElementById("btn_digital").onclick = content_digital;
document.getElementById("btn_studio").onclick = content_studio;

//create the functions for the onlick events
function content_digital() {
    document.getElementById("content").innerHTML = "digital";
}

function content_studio() {
    document.getElementById("content").innerHTML = "studio";






Friday, 22 April 2016

A record of my created state changes to date


Interacting in goo with JS/DOM Elements


This is a bit of a breakthrough for me because I was finally able to Code my own stuff into the Goo window, Meaning I no longer have to rely on the programmes own functionality. If i can code it then i can make it happen. (famous last words)