function Childclass(){
this.printX = function(){
print(this.vector.y);
}
}
function Superclass(){
this.vector = createVector(1,2);
}
Childclass.prototype = new Superclass();
私は次のエラーを取得printX()
ランニング:プロトタイプでcreateVectorを使用するにはどうすればよいですか?
Uncaught ReferenceError: createVector is not defined at new Superclass
はプロトタイプでcreateVector()
使用して、このことは可能ですか?
あなたは[MCVE]あなたがやろうとしている正確に何を示すを投稿してくださいことはできますか? JSFiddleやCodePenを投稿することはできますか? –